:root {
  --ss-red: #e53d2f;
  --ss-red-dark: #b82c20;
  --ss-teal: #7fd9d4;
  --ss-teal-dark: #4fb8b2;
  --ss-grey: #4a4a4a;
  --ss-grey-light: #f4f4f4;
  --ss-ink: #23272b;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ss-ink);
  background: #fff;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.ss-navbar {
  background: linear-gradient(90deg, var(--ss-red) 0%, var(--ss-red-dark) 100%);
}
.ss-navbar .brand-text .tagline { color: rgba(255,255,255,.8); font-weight: 500; font-size: .7rem; letter-spacing: .04em; }
.ss-navbar .nav-link { color: rgba(255,255,255,.9); font-weight: 500; }
.ss-navbar .nav-link.active, .ss-navbar .nav-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.btn-ss-primary {
  background: var(--ss-teal);
  border-color: var(--ss-teal);
  color: var(--ss-ink);
  font-weight: 600;
}
.btn-ss-primary:hover { background: var(--ss-teal-dark); border-color: var(--ss-teal-dark); color: #fff; }

.btn-ss-outline {
  border: 2px solid var(--ss-red);
  color: var(--ss-red);
  font-weight: 600;
  background: transparent;
}
.btn-ss-outline:hover { background: var(--ss-red); color: #fff; }

.cart-badge {
  position: absolute;
  top: -2px; right: -6px;
  background: var(--ss-teal);
  color: var(--ss-ink);
  font-size: .65rem;
  font-weight: 700;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 50px;
  min-width: 16px;
  text-align: center;
}

/* Hero */
.ss-hero {
  position: relative;
  background: linear-gradient(rgba(30,20,20,.55), rgba(30,20,20,.55)), url('../img/hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 6rem 0;
}
.ss-hero h1 { font-weight: 800; font-size: 3rem; }
.ss-hero .lead { font-size: 1.25rem; color: rgba(255,255,255,.9); }

.ss-section-title {
  font-weight: 800;
  color: var(--ss-ink);
  position: relative;
  padding-bottom: .5rem;
}
.ss-section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 4px;
  background: var(--ss-red);
  border-radius: 2px;
}
.ss-section-title.text-center::after { left: 50%; transform: translateX(-50%); }

/* Cards */
.ss-card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.ss-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.ss-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.ss-card .card-body { padding: 1.25rem; }

.badge-status-upcoming { background: var(--ss-teal); color: var(--ss-ink); }
.badge-status-completed { background: #6c757d; }
.badge-status-cancelled { background: #adb5bd; color: var(--ss-ink); }
.badge-status-active { background: #2fa84f; }
.badge-status-pending { background: #e8a33d; }
.badge-status-inactive { background: #adb5bd; color: var(--ss-ink); }
.badge-status-published { background: #2fa84f; }
.badge-status-draft { background: #adb5bd; color: var(--ss-ink); }
.badge-status-paid { background: var(--ss-teal); color: var(--ss-ink); }
.badge-status-fulfilled { background: #2fa84f; }

.ss-stat {
  background: var(--ss-grey-light);
  border-radius: 14px;
  padding: 2rem 1rem;
  text-align: center;
}
.ss-stat .num { font-size: 2.4rem; font-weight: 800; color: var(--ss-red); font-family: 'Poppins', sans-serif; }

/* Gallery */
.gallery-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: block;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.gallery-thumb:hover img { transform: scale(1.06); }

/* Footer */
.ss-footer {
  background: var(--ss-ink);
}
.ss-footer .footer-links li { margin-bottom: .5rem; }
.ss-footer .footer-links a { color: rgba(255,255,255,.65); text-decoration: none; }
.ss-footer .footer-links a:hover { color: var(--ss-teal); }

/* Forms */
.form-label { font-weight: 600; }
.ss-auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ss-red) 0%, var(--ss-grey) 100%);
  padding: 2rem 1rem;
}
.ss-auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
