/* ===== ESSGRAY PUB & RESTAURANT — STYLESHEET ===== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --dark-4: #2E2E2E;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --gray: #888888;
  --light-gray: #CCCCCC;
  --red: #E63946;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius: 10px;
  --transition: 0.3s ease;
  --shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.1em;
  animation: pulse 1.5s infinite;
}
.loader-bar {
  width: 200px; height: 3px;
  background: var(--dark-4);
  margin-top: 20px;
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: load 1.5s ease forwards;
}
@keyframes load { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===== HEADER / NAV ===== */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}
header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.5); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--light-gray);
  letter-spacing: 0.15em;
  font-family: var(--font-body);
}
.nav-links {
  display: flex; gap: 6px;
}
.nav-links a {
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light-gray);
  border-radius: 4px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-order-btn {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  transition: var(--transition) !important;
}
.nav-order-btn:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 16px 24px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--light-gray);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); padding-left: 8px; }

/* ===== HERO ===== */
#home {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.85) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}
#home::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--dark), transparent);
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title .highlight { color: var(--gold); display: block; }
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--light-gray);
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== SECTION BASICS ===== */
section { padding: 90px 24px; }
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 520px;
}
.section-header { margin-bottom: 50px; }

/* ===== MENU SECTION ===== */
#menu { background: var(--dark-2); }
.menu-tabs {
  display: flex; gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 30px;
  border: 1.5px solid var(--dark-4);
  background: transparent;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }

.menu-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  cursor: pointer;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(201,168,76,0.3); }
.menu-card-img {
  width: 100%; height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.05); }
.menu-card-img-wrap { overflow: hidden; }
.menu-card-body { padding: 16px; }
.menu-card-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.menu-card-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.add-to-cart-btn {
  width: 100%;
  padding: 9px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.add-to-cart-btn:hover { background: var(--gold); color: var(--dark); }

/* ===== ABOUT SECTION ===== */
#about { background: var(--dark); }
.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; border-radius: 12px;
  object-fit: cover; height: 420px;
  border: 1px solid rgba(201,168,76,0.2);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 900; }
.about-badge span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; }
.about-text p { color: var(--light-gray); font-size: 0.97rem; margin-bottom: 18px; line-height: 1.8; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 32px;
}
.about-feature {
  background: var(--dark-3);
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.about-feature-icon { font-size: 1.5rem; margin-bottom: 8px; }
.about-feature h4 { font-size: 0.85rem; font-weight: 600; color: var(--gold); margin-bottom: 4px; }
.about-feature p { font-size: 0.8rem; color: var(--gray); }

/* ===== GALLERY ===== */
#gallery { background: var(--dark-2); }
.gallery-grid {
  max-width: 1200px; margin: 0 auto;
  columns: 3; column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.4s ease;
}
.gallery-item::after {
  content: '🔍';
  position: absolute; inset: 0;
  background: rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 5000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; cursor: pointer; color: var(--white);
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

/* ===== REVIEWS ===== */
#reviews { background: var(--dark); }
.reviews-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--dark-3);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
}
.review-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.review-text { color: var(--light-gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { font-size: 0.82rem; font-weight: 600; color: var(--gold); }

/* ===== CONTACT ===== */
#contact { background: var(--dark-2); }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--dark-3);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(201,168,76,0.3); }
.contact-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-card h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--light-gray); transition: var(--transition); }
.contact-card a:hover { color: var(--gold); }

/* Inquiry Form */
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--white);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-3);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--dark-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ===== CART ===== */
.cart-toggle {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--gold);
  color: var(--dark);
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
  transition: var(--transition);
  z-index: 900;
  display: flex; align-items: center; justify-content: center;
}
.cart-toggle:hover { transform: scale(1.1); background: var(--gold-light); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-count.hidden { display: none; }

/* Cart Drawer */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--dark-2);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.3rem; }
.cart-close {
  background: none; border: none; color: var(--gray);
  font-size: 1.4rem; cursor: pointer; transition: var(--transition);
}
.cart-close:hover { color: var(--white); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty {
  text-align: center; padding: 60px 0;
  color: var(--gray); font-size: 0.92rem;
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 12px; }
.cart-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 0.8rem; color: var(--gold); font-weight: 600; }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.qty-btn {
  width: 26px; height: 26px;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--gold); color: var(--dark); }
.qty-num { font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }
.remove-item { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 1rem; transition: var(--transition); }
.remove-item:hover { color: var(--red); }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; margin-bottom: 8px; color: var(--light-gray);
}
.cart-total.grand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cart-total span:last-child { color: var(--gold); }
.cart-note {
  font-size: 0.75rem; color: var(--gray); margin-bottom: 16px;
  padding: 10px; background: var(--dark-3); border-radius: 6px;
}
.checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.checkout-btn:hover { background: var(--gold-light); }

/* ===== ORDER MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--dark-2);
  border-radius: 14px;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.modal-header {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; background: var(--dark-2); z-index: 1;
}
.modal-header h3 { font-family: var(--font-display); font-size: 1.2rem; }
.modal-close { background: none; border: none; color: var(--gray); font-size: 1.4rem; cursor: pointer; transition: var(--transition); }
.modal-close:hover { color: var(--white); }
.modal-body { padding: 24px; }
.modal-order-summary {
  background: var(--dark-3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}
.modal-order-summary h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 12px; }
.modal-order-item { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 6px; color: var(--light-gray); }
.modal-total { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 10px; margin-top: 10px; display: flex; justify-content: space-between; font-weight: 700; color: var(--gold); }

/* ===== SUCCESS ===== */
.success-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 3000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.success-overlay.open { display: flex; }
.success-card {
  background: var(--dark-2);
  border-radius: 14px;
  padding: 50px 40px;
  text-align: center;
  max-width: 400px;
  border: 1px solid rgba(201,168,76,0.3);
  animation: slideUp 0.3s ease;
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.success-card h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; }
.success-card p { color: var(--light-gray); font-size: 0.92rem; margin-bottom: 24px; }
.success-close-btn {
  padding: 12px 32px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}
.success-close-btn:hover { background: var(--gold-light); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px 30px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--gold); }
.footer-about { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--dark-4);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gray);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.social-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--gray); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-contact-item p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--gray);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 30px; left: 30px;
  background: var(--dark-4);
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  font-size: 1rem;
  display: none;
  align-items: center; justify-content: center;
  z-index: 800;
  transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 100px; right: 30px;
  background: var(--dark-3);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  z-index: 4000;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}
.toast.show { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { display: none; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 16px; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .cart-toggle { bottom: 20px; right: 20px; }
  .back-to-top { bottom: 20px; left: 20px; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
