.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.cart-btn.has-items {
  animation: cartPulse 1.8s ease infinite;
}

@keyframes cartPulse {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.25s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: transparent;
  color: var(--gold);
}

.global-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 14px 20px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 2000;
}

.global-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

button.is-loading {
  opacity: 0.7;
  cursor: wait;
}
.custom-cursor-enabled,
.custom-cursor-enabled * {
  cursor: none;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.18s ease, background 0.18s ease, border 0.18s ease;
}

.cursor-follower {
  position: fixed;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.cursor.cursor-hover {
  transform: translate(-50%, -50%) scale(2.5);
  background: transparent;
  border: 1px solid var(--gold);
}

.cursor-follower.cursor-hover {
  transform: translate(-50%, -50%) scale(0.45);
  border-color: var(--gold);
}

@media (pointer: coarse) {
  .custom-cursor-enabled,
  .custom-cursor-enabled * {
    cursor: auto;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* Public footer */
.footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border, rgba(255,255,255,0.12));
  padding: 80px 8% 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.3fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.12));
}

.footer-logo { margin-bottom: 26px; }
.footer-brand p { color: var(--muted, #aaa); line-height: 1.8; font-size: 0.9rem; max-width: 360px; margin-bottom: 28px; }
.social-links { display: flex; gap: 14px; }
.social-link { width: 42px; height: 42px; border: 1px solid var(--border, rgba(255,255,255,0.12)); color: var(--muted, #aaa); display: inline-flex; align-items: center; justify-content: center; transition: 0.2s; }
.social-link:hover { color: var(--gold, #c8a96e); border-color: var(--gold, #c8a96e); }
.footer-col h4, .footer-newsletter h4 { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--white, #fff); margin-bottom: 28px; }
.footer-col a { display: block; color: var(--muted, #aaa); font-size: 0.88rem; margin-bottom: 16px; transition: 0.2s; }
.footer-col a:hover { color: var(--gold, #c8a96e); }
.footer-newsletter p { color: var(--muted, #aaa); line-height: 1.8; font-size: 0.88rem; margin-bottom: 22px; }
.newsletter-form { display: flex; margin-bottom: 18px; }
.newsletter-form input { flex: 1; min-width: 0; padding: 14px 16px; background: #111; border: 1px solid var(--border, rgba(255,255,255,0.12)); color: var(--white, #fff); font-family: 'Montserrat', sans-serif; outline: none; }
.newsletter-form input:focus { border-color: var(--gold, #c8a96e); }
.btn-subscribe { padding: 0 24px; border: 1px solid var(--gold, #c8a96e); background: var(--gold, #c8a96e); color: var(--black, #111); font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; }
.newsletter-note { font-size: 0.76rem !important; }
.newsletter-note a { color: var(--gold, #c8a96e); text-decoration: underline; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 24px; color: #666; font-size: 0.78rem; letter-spacing: 1px; }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { color: #666; transition: 0.2s; }
.footer-legal a:hover { color: var(--gold, #c8a96e); }
@media (max-width: 992px) { .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; } }
@media (max-width: 576px) { .footer { padding: 60px 20px 28px; } .footer-top { grid-template-columns: 1fr; gap: 36px; } .newsletter-form { flex-direction: column; } .btn-subscribe { padding: 14px; } .footer-bottom { flex-direction: column; } .footer-legal { flex-direction: column; gap: 12px; } }
