* {
  font-family: 'Cinzel', serif;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #7f1d1d;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #991b1b;
}

/* SIPO Default UI Styles */
:root {
  --strip-height: 40px;
}
body.has-status-strip {
  padding-top: var(--strip-height);
}
body.has-status-strip #navbar {
  top: var(--strip-height);
}
.status-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  min-height: var(--strip-height);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  transition: all 0.3s;
  background: #fff201; /* Yellow strip! */
  color: #111827;
  border-bottom: 2px solid rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
  .status-strip {
    font-size: 1rem;
    padding: 0 1rem;
    height: var(--strip-height);
    min-height: auto;
  }
}
.status-strip.open { color: #166534; }
.status-strip.closed { color: #991b1b; }
.status-strip-inner { display: flex; align-items: center; justify-content: center; gap: 0.5rem; text-align: center; line-height: 1.3; flex-wrap: wrap; }
.status-strip-dot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; flex-shrink: 0; }
.status-strip.open .status-strip-dot { background: #166534; box-shadow: 0 0 5px rgba(22, 101, 52, 0.5); }
.status-strip.closed .status-strip-dot { background: #991b1b; box-shadow: 0 0 5px rgba(153, 27, 27, 0.5); }

.sipo-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  display: none; align-items: center; justify-content: center;
  z-index: 2000; opacity: 0; transition: opacity 0.3s;
}
.sipo-modal-overlay.active { display: flex; opacity: 1; }
.sipo-modal {
  background: white; padding: 2rem; border-radius: 12px;
  text-align: center; max-width: 400px; width: 90%;
  position: relative;
}
.sipo-modal-close { position: absolute; top: 1rem; right: 1rem; background: transparent; border: none; font-size: 1.5rem; cursor: pointer; }

.item-card {
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); width: 100%; max-width: 320px;
  display: flex; flex-direction: column;
}
.item-card-img { height: 200px; position: relative; overflow: hidden; }
.item-card-img img { width: 100%; height: 100%; object-fit: cover; }
.item-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.item-card-body h3 { margin: 0 0 0.5rem 0; font-size: 1.25rem; font-weight: bold; color: #7f1d1d; }
.item-card-body p { margin: 0 0 1rem 0; color: #4b5563; font-size: 0.9rem; flex: 1; }
.price { font-weight: bold; font-size: 1.1rem; color: #111827; }
.badge { position: absolute; top: 1rem; right: 1rem; background: #fbbf24; color: #7f1d1d; padding: 0.25rem 0.5rem; border-radius: 999px; font-size: 0.75rem; font-weight: bold; }

/* Custom Animations Framework */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.active {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0);
}
.fade-up { transform: translateY(50px); }
.fade-down { transform: translateY(-50px); }
.fade-left { transform: translateX(50px); }
.fade-right { transform: translateX(-50px); }
.zoom-in { transform: scale(0.9); }

/* Stagger delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }
.delay-800 { transition-delay: 800ms; }

/* Bouncing animation for hero element */
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.animate-bounce-slow {
  animation: bounce-slow 1.5s infinite;
}
