/* Default fork cursor everywhere */
body, a, button, input, select {
  cursor: url('/assets/fork-normal.png') 8 3, auto;
}

body {
  animation: pageFade 0.8s ease both;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover: fork tilts downward */
a:hover, button:hover, .btn:hover, .menu-controls select:hover {
  cursor: url('/assets/fork-hover.png') 8 8, pointer;
}

/* Click/Active: fork stabs deeper */
a:active, button:active, .btn:active {
  cursor: url('/assets/fork-active.png') 10 10, pointer;
}

/* Minimal black/white aesthetic - use white page bg, black accents */
:root {
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #666;
  --accent: #000000;
}

* {
    box-sizing: border-box; 
}

html,body { 
    height:100%; 
    margin:0; 
    font-family: 'Cinzel', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, serif;
    background:var(--bg); 
    color:var(--text); 
}

.site-header {
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  padding:16px 24px; 
  border-bottom:1px solid #eee;
}

.brand { 
    display:flex; 
    align-items:center; 
    gap:12px; 
}

.logo { 
    height:48px; 
    width:auto; 
    display:block; 
}

.site-header h1 { 
    font-size:18px; 
    margin:0; 
    font-weight:600; 
    letter-spacing:0.4px; 
}

nav a { 
    margin-left:12px; 
    text-decoration:none; 
    color:var(--text); 
    padding:8px 12px; 
    border-radius:8px; 
}

nav a.btn { 
    background:var(--accent); 
    color:var(--bg); 
    font-weight:600; 
}

nav a.btn:hover { 
    opacity:0.9; 
    transform:translateY(-1px); 
}

.container { 
    max-width:1100px; 
    margin:28px auto; 
    padding:0 16px; 
}

.hero { 
    padding:48px 0; 
    text-align:center; 
}

.hero-inner h2 { 
    font-size:34px; 
    margin:0 0 8px; 
}

.section-divider {
  text-align: center;
  margin: 60px 0;
  color: #bbb;
  font-size: 18px;
}

.btn-primary {
  background:var(--accent); 
  color:var(--bg); 
  padding:12px 18px; 
  text-decoration:none; 
  display:inline-block; 
  border-radius:10px; 
  font-weight:700;
}

.btn-primary:hover { 
    transform:translateY(-3px); 
}

.grid { 
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); 
    gap:18px; 
    margin-top:18px; 
}

.card { 
    background: #fff; 
    border:1px solid #f0f0f0;
    border-radius:10px; 
    padding:10px;
    box-shadow:0 6px 14px rgba(0,0,0,0.04); 
    min-height:140px; 
    display:flex; 
    flex-direction:column; 
    gap:8px; 
}

.card img { 
    width:100%; 
    height:140px; 
    object-fit:cover; 
    border-radius:8px; 
}

.card h4 { 
    margin:0; 
    font-size:18px; 
}

/* orders my page tweaks */
.card .btn.small { 
    padding:6px 10px;
    font-size:13px;
    border-radius:8px; 
}


.desc { 
    color:var(--muted); 
    font-size:14px; 
    margin:0; 
}

.meta { 
    margin-top:auto; 
    font-weight:700; 
}

.center { 
    text-align:center; 
    padding:40px 0; 
}

form.form-inline { 
    display:flex; 
    gap:8px; 
    flex-wrap:wrap; 
    margin-bottom:18px; 
}

form.form-inline input { 
    padding:10px; 
    border-radius:8px; 
    border:1px solid #ddd; 
}

.btn { 
    background:var(--accent); 
    color:var(--bg); 
    padding:8px 12px; 
    border:none; 
    border-radius:8px; 
    cursor:pointer; 
}

/* .btn:hover { 
    opacity:0.95; 
    transform:translateY(-1px); 
} */

.btn.small { 
    padding:6px 10px; 
    font-size:13px;
    border-radius:8px;
}

.btn.danger { 
    background: transparent; 
    color: #b00020; 
    border: 1px solid #f4cccc; 
}

.btn,
.btn-primary {
  transition: all 0.25s ease;
}

.btn:hover,
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.btn-signin:hover {
    color: black;
}

.manage-item { 
    padding:10px 0; 
    border-top:1px dashed #eee; 
    display:flex; 
    gap:12px; 
    align-items:center; 
    justify-content:space-between; 
}

.inline-form { 
    display:inline-flex; 
    gap:6px; 
    align-items:center; 
}

.site-footer {
  background: #0c0c0c;
  color: #ddd;
  padding: 60px 20px 25px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.footer-brand h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #bbb;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #bbb;
  margin: 6px 0;
}

.footer-contact i {
  width: auto;
  height: auto;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  stroke-width: 1.8;
  color: #bbb;
}

.footer-social .social-icons {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a i {
  width: 18px;
  height: 18px;
  color: #fff;
}

.footer-social a:hover {
  background: #c9a24d;
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}

/* Accessibility focus outlines */
a:focus, button:focus, input:focus { 
    outline:3px solid rgba(0,0,0,0.12); 
    outline-offset:2px; 
}

/* small screens */
@media (max-width:600px) {
  .hero-inner h2 { font-size:24px; }
  .brand h1 { display:none; }
}

/* cart button + badge */
.cart-link { position: relative; text-decoration:none; color:inherit; padding:8px 10px; display:inline-flex; align-items:center; gap:8px; }
.cart-badge {
  display:inline-block;
  min-width:20px;
  height:20px;
  line-height:20px;
  border-radius:999px;
  text-align:center;
  background:#000;
  color:#fff;
  font-size:12px;
  padding:0 6px;
  margin-right:6px;
}
.add-to-cart { background:#000; color:#fff; padding:8px 10px; border-radius:8px; border:0; cursor:pointer; }
.add-to-cart:hover { opacity:0.9; transform: translateY(-1px); }
.qty-input { width:64px; padding:6px; border-radius:6px; border:1px solid #ddd; }
.card-actions { display:flex; gap:8px; align-items:center; margin-top:8px; }
.placeholder-img { height:140px; display:flex; align-items:center; justify-content:center; background:#f6f6f6; color:#888; border-radius:8px; }
.mini-toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  bottom: 12%;
  background: #000; color: #fff; padding: 10px 14px; border-radius: 999px;
  opacity: 0; transition: all 220ms ease;
  z-index: 9999;
}
.mini-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Order tracker styles */
.tracker-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

.tracker-card {
  width: 100%;
  max-width: 760px;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.order-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
  gap: 12px;
  margin: 14px 0;
}

.progress-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 22px 0;
  user-select: none;
}

.progress-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.progress-steps .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  transition: 0.3s ease;
}

.progress-steps .step.done .dot {
  background: #000;
  border-color: #000;
}

.progress-steps .step.active .dot {
  box-shadow: 0 0 0 6px rgba(0,0,0,0.15);
}

.progress-steps .label {
  font-size: 12px;
  margin-top: 6px;
  color: #444;
  text-transform: capitalize;
}

.progress-steps .divider {
  flex: 1;
  height: 2px;
  background: #eee;
}

.tracker-log {
  margin-top: 20px;
  border-top: 1px dashed #eee;
  padding-top: 12px;
}

.tracker-log ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tracker-log li {
  font-size: 14px;
  padding: 6px 0;
  color: #333;
}

/* Menu filter + search */
.menu-header { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:14px; flex-wrap:wrap; }
.menu-controls .inline-form { display:flex; gap:8px; align-items:center; }
.menu-controls select, .menu-controls input { padding:8px 10px; border-radius:8px; border:1px solid #ddd; }
.menu-controls input { min-width:180px; }
.sr-only { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
@media (max-width:600px) {
  .menu-header { flex-direction:column; align-items:stretch; }
  .menu-controls { display:flex; justify-content:space-between; gap:8px; }
}

/* Homepage hero & featured */
.hero { padding:48px 0; border-bottom:1px solid #f2f2f2; }
.hero-inner { display:flex; gap:28px; align-items:stretch; justify-content:space-between; }
.hero-left { flex:1; display:flex; flex-direction:column; gap:12px; justify-content:center; }
.hero-right { width:420px; display:flex; align-items:center; justify-content:center; }

.hero-logo { height:64px; width:64px; margin-bottom:6px; }
.hero h1 { font-size:34px; margin:6px 0 0; letter-spacing:0.4px; }
.lead { color:var(--muted); font-size:16px; margin:6px 0 12px; }

.hero-ctas { display:flex; gap:10px; margin-top:8px; flex-wrap:wrap; }
.btn-primary { background:var(--accent); color:var(--bg); padding:12px 18px; text-decoration:none; display:inline-block; border-radius:10px; font-weight:700; }
.btn { background:transparent; color:var(--text); padding:10px 14px; border-radius:10px; border:1px solid #000; text-decoration:none; font-weight:600; }

.featured-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.feat-card { display:flex; gap:10px; align-items:center; padding:8px; border-radius:8px; border:1px solid #f3f3f3; background:#fff; transition: transform 0.8s ease; }
.feat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.feat-card img { width:96px; height:72px; object-fit:cover; border-radius:8px; transition: transform 0.8s ease;}
.feat-card:hover img {
  transform: scale(1.08);
}
.feat-body { display:flex; flex-direction:column; gap:4px; }
.feat-name { font-weight:700; }
.feat-desc { color:var(--muted); font-size:13px; }
.feat-meta { margin-top:6px; font-weight:700; }

.hero-illustration img { width:100%; border-radius:10px; box-shadow:0 8px 28px rgba(0,0,0,0.06); }

/* about card */
.about-card {
  max-width: 920px;
  margin: auto;
  padding: 40px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  text-align: center;
}

.about-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.about-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.about-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 720px;
  margin: 0 auto 28px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.point {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  font-size: 15px;
  transition: transform 0.3s ease;
}

.point:hover {
  transform: translateY(-6px);
}

.point span {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.about-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  text-align: center;
  font-weight: 600;
}

/* responsive */
@media (max-width:920px) {
  .hero-inner { flex-direction:column-reverse; gap:18px; }
  .hero-right { width:100%; }
  .featured-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:520px) {
  .featured-grid { grid-template-columns:1fr; }
  .hero h1 { font-size:26px; }
  .lead { font-size:14px; }
}

/* ---- Map section styles ---- */
.map-section { padding: 28px 0; }
.map-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}
.map-card h3 { margin: 0 0 6px; font-size:20px; }
.map-card .muted { color: var(--muted); margin-bottom:10px; }

.map-embed-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #f6f6f6;
}
.map-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* overlay link - full area clickable to open Google Maps (transparent) */
.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.0)); /* fully transparent but keeps area clickable */
  cursor: pointer;
}

/* map CTAs */
.map-actions { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.map-actions .btn { padding:10px 14px; border-radius:10px; }
.map-actions .btn.secondary {
  background: transparent;
  border: 1px solid #000;
  color: var(--text);
}

/* small screens */
@media (max-width:600px) {
  .map-embed-wrap { height: 220px; }
  .map-card { padding: 12px; }
}

/* Review cards */
.card small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #888;
}

/* ======================
   REVIEWS – PREMIUM STYLE
====================== */

.reviews-section {
  margin: 60px auto;
  text-align: center;
}

.reviews-title {
  font-size: 30px;
  margin-bottom: 6px;
}

.reviews-sub {
  color: var(--muted);
  margin-bottom: 30px;
}

.reviews-summary {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  text-align: center;
}

.reviews-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(0,0,0,0.12);
}

.review-emoji {
  font-size: 20px;
  margin-top: 6px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #111, #333);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.review-name {
  font-weight: 700;
}

.review-stars {
  font-size: 14px;
  color: #f4b400;
  letter-spacing: 1px;
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.review-text {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin: 10px 0;
}

.review-source {
  font-size: 12px;
  color: #777;
  text-align: right;
}

.filter-btn.active {
  background: #000;
  color: #fff;
}

body {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================
   HERO VIDEO – PREMIUM LOOK
========================= */

.hero-video {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.65));
  z-index: 3;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.05);
  z-index: 1;
}

/* Dark cinematic overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* Gradient fade bottom */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.75)
  );
  z-index: 3;
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

/* Glass card effect */
.glass-box {
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.35);
  border-radius: 16px;
  padding: 32px;
  max-width: 520px;
  color: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.hero-video h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #fff;
}

.hero-video .lead {
  color: #ddd;
  font-size: 17px;
  margin-bottom: 20px;
}

.hero-video .btn {
  border-color: #fff;
  color: #fff;
}

.hero-video .btn-primary {
  background: #fff;
  color: #000;
}

/* Mobile fixes */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .glass-box {
    max-width: 100%;
  }
}

/* ===== Steam Animation ===== */
.steam-wrap {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.steam {
  position: absolute;
  width: 40px;
  height: 80px;
  background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  animation: steamRise 6s infinite ease-in-out;
  filter: blur(8px);
  opacity: 0;
}

.s1 { left: -40px; animation-delay: 0s; }
.s2 { left: 0px; animation-delay: 2s; }
.s3 { left: 40px; animation-delay: 4s; }

@keyframes steamRise {
  0% { transform: translateY(20px) scale(0.8); opacity: 0; }
  30% { opacity: 0.6; }
  100% { transform: translateY(-120px) scale(1.4); opacity: 0; }
}

/* Order success pulse */
.order-success {
  animation: popSuccess 0.6s ease forwards;
}

@keyframes popSuccess {
  0% { transform: scale(0.9); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.glass-box {
  opacity: 0;
  transform: translateY(20px);
  animation: glassIn 1s ease forwards;
}

@keyframes glassIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#cursor-glow {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  mix-blend-mode: overlay;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.05s linear;
}

@media (max-width: 768px) {
  .steam,
  .hero-bg,
  .hero-inner,
  .glass-box,
  #cursor-glow {
    animation: none !important;
    transform: none !important;
  }
}

/* ==============================
   NAVIGATION INTERACTIONS
============================== */

.main-nav a {
  position: relative;
  transition: all 0.25s ease;
  font-weight: 500;
}

/* Hover effect */
.main-nav a:hover {
  transform: translateY(-2px);
  background: rgba(0,0,0,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Active page */
.main-nav a.active-nav {
  background: #000;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Smooth underline glow */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active-nav::after {
  width: 60%;
}

/* ===== PREMIUM ICON STYLE ===== */

.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;

  background: linear-gradient(145deg, #ffffff, #f2f2f2);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);

  transition: all 0.35s ease;
}

.point i {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
  color: #111;
  transition: all 0.35s ease;
}

/* Hover animation */
.point:hover .icon-wrap {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.15),
    inset 0 2px 2px rgba(255, 255, 255, 0.9);
}

.point:hover i {
  color: #c9a24d;
  transform: scale(1.15);
}

/* Smooth card hover */
.point {
  transition: transform 0.3s ease;
}

.point:hover {
  transform: translateY(-6px);
}

/* ===== TRUST ICONS ===== */
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.trust-item i {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
  color: #111;
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-6px);
}

.trust-item:hover i {
  color: #c9a24d;
  transform: scale(1.2);
}

/* ===== REVIEW ICON ===== */
.review-icon {
  width: 26px;
  height: 26px;
  color: #f4b400;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* ===============================
   FOOTER PREMIUM ANIMATIONS
================================ */

/* Initial hidden state */
.reveal-footer {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

/* Reveal animation */
.reveal-footer.footer-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glow sweep effect */
.footer-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 120%,
    rgba(255, 255, 255, 0.15),
    transparent 60%
  );
  opacity: 0;
  animation: footerGlow 2.5s ease forwards;
  pointer-events: none;
}

.footer-visible .footer-glow {
  opacity: 1;
}

/* Glow animation */
@keyframes footerGlow {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}

/* Slight lift on hover */
.site-footer:hover {
  box-shadow: 0 -15px 40px rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.4s ease;
}

/* ==========================
   FLOATING PARTICLES EFFECT
========================== */

.floating-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-particles span {
  position: absolute;
  bottom: -20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.7), transparent);
  opacity: 0;
  animation: floatUp linear infinite;
}

/* Smooth floating animation */
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-160px) scale(1.3);
    opacity: 0;
  }
}

/* Subtle glow enhancement */
.floating-particles span {
  filter: blur(0.4px);
}

/* Disable on small screens for performance */
@media (max-width: 768px) {
  .floating-particles {
    display: none;
  }
}

/* =====================================================
   📱 MOBILE OPTIMIZATION (FINAL PASS)
   ===================================================== */

@media (max-width: 768px) {

  /* Prevent sideways scroll */
  html, body {
    overflow-x: hidden;
  }

  /* Reduce heavy animations on mobile */
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s !important;
  }

  /* Header & navigation */
  .site-header {
    padding: 14px 16px;
    flex-wrap: wrap;
  }

  .brand h1 {
    font-size: 16px;
  }

  nav a {
    padding: 10px 12px;
    font-size: 14px;
  }

  /* HERO SECTION */
  .hero {
    padding: 28px 0;
  }

  .hero-inner {
    gap: 18px;
  }

  .hero-video {
    min-height: 65vh;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero .lead {
    font-size: 14px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
  }

  /* Cards & grids */
  .grid,
  .featured-grid,
  .about-points,
  .trust-grid {
    grid-template-columns: 1fr !important;
  }

  .card,
  .feat-card {
    padding: 12px;
  }

  /* Buttons */
  .btn,
  .btn-primary {
    padding: 12px 14px;
    font-size: 15px;
  }

  /* Reduce hover effects on mobile */
  .btn:hover,
  .feat-card:hover,
  .point:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  /* Reviews */
  .reviews-title {
    font-size: 24px;
  }

  .review-card {
    min-width: 85%;
  }

  /* Footer */
  .site-footer {
    padding: 40px 18px 24px;
  }

  .footer-inner {
    gap: 24px;
  }

  .footer-brand h3 {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  /* Reduce cursor effects on mobile */
  #cursor-glow {
    display: none !important;
  }

  /* Reduce floating animation cost */
  .floating-particles {
    display: none !important;
  }
}

/* ===============================
   EXTRA SMALL DEVICES (≤ 420px)
================================ */
@media (max-width: 420px) {

  .hero h1 {
    font-size: 22px;
  }

  .lead {
    font-size: 13px;
  }

  .btn,
  .btn-primary {
    font-size: 14px;
    padding: 10px 12px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .review-card {
    padding: 14px;
  }

  .map-embed-wrap {
    height: 200px;
  }
}

/* ===============================
   📱 MOBILE BOTTOM NAVIGATION
================================ */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0);
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-bottom-nav .nav-item {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #aaa;
    text-decoration: none;
    padding: 6px 0;
    transition: all 0.25s ease;
    position: relative;
  }

  .mobile-bottom-nav .nav-item i {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
  }

  .mobile-bottom-nav .nav-item.active {
    color: #fff;
    transform: translateY(-4px);
  }

  .mobile-bottom-nav .nav-item.active::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: #fff;
  }

  /* Prevent content being hidden behind nav */
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

/* =====================================================
   📱 MOBILE HEADER – LOGO ONLY (OPTION A)
===================================================== */

@media (max-width: 768px) {

  .site-header {
    padding: 10px 14px;
    justify-content: center;
  }

  .brand {
    gap: 10px;
  }

  .logo {
    height: 38px;
  }

  .brand-title {
    display: none; /* hide Al Rahman Foods text */
  }

  .brand-sub {
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #444;
  }

  /* Hide desktop navigation on mobile */
  .main-nav {
    display: none;
  }
}

@media (max-width: 768px) {

  .menu-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .menu-controls select,
  .menu-controls input {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }
}