﻿:root {
  --brand-bg: #e9e9e9;
  --brand-dark: #05080d;
  --brand-panel: #2a2f37;
  --brand-accent: #f58a17;
  --brand-accent-dark: #b6640f;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--brand-bg);
  color: #1f2430;
}

.site-header-dark {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logo {
  height: 58px;
  width: auto;
}

.nav-link-custom {
  color: #fff;
  text-decoration: none;
}

.nav-link-custom:hover { color: var(--brand-accent); }

.hero-main,
.inner-hero {
  background-size: cover;
  background-position: center;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8c95a3;
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0;
}

.listing-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.listing-card-link:hover .listing-card {
  transform: translateY(-2px);
}

.listing-card {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 3px 10px rgba(0,0,0,.08);
  transition: transform .18s ease;
}

.listing-image-wrap { position: relative; }

.listing-image {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.listing-chip,
.listing-status {
  position: absolute;
  left: 12px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.listing-chip { top: 12px; }
.listing-status { bottom: 12px; background: rgba(181,111,22,.92); }

.listing-body { padding: 14px; }
.listing-price { color: var(--brand-accent); }

.listing-arrow {
  color: #111;
  font-size: 1.8rem;
  line-height: 1;
}

.marquee-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.marquee-wrap:hover .marquee-track,
.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 22s linear infinite;
}

.marquee-track.slow { animation-duration: 28s; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.category-box-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.category-box-link:hover .category-box {
  border-color: var(--brand-accent);
}

.category-box {
  width: 180px;
  background: #fff;
  border: 1px solid #e1e4ea;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  text-align: center;
  padding: 26px 10px;
  flex: 0 0 auto;
}

.category-icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--brand-accent);
}

.partner-box {
  width: 170px;
  height: 95px;
  background: #fff;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex: 0 0 auto;
}

.partner-box img { max-width: 100%; max-height: 100%; object-fit: contain; }

.main-photo img {
  max-height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

.thumb-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.thumb-item {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border: 2px solid #ddd;
}

.similar-item {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #ddd;
}

.similar-item img {
  width: 220px;
  height: 120px;
  object-fit: cover;
}

.site-footer-pattern {
  background-image: linear-gradient(rgba(7,7,8,.75), rgba(7,7,8,.75)), url('../assets/static/banner-pattern.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.footer-card {
  background: rgba(66, 74, 86, 0.72);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 14px;
  min-height: 160px;
}

.footer-featured-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.footer-featured-link:hover {
  border-color: var(--brand-accent);
}

.footer-link {
  color: #fff;
  text-decoration: none;
}

.footer-link:hover { color: var(--brand-accent); }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #202630;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.site-footer-bottom { background: rgba(0,0,0,.75); }

@media (max-width: 992px) {
  .section-title { font-size: 1.8rem; }
  .listing-image { height: 220px; }
  .similar-item img { width: 130px; height: 100px; }
}
