:root {
  --brand: #d35400;
  /* spicy orange */
  --muted: #9aa0a6;
  --card-bg: rgba(255, 255, 255, 0.03);
  --glass: rgba(255, 255, 255, 0.04);
}

/* global body */
body {
  background: linear-gradient(180deg, #0b0b0c 0%, #0f0f10 100%);
  color: #f8f9fa;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

/* main wrapper to constrain content width and center it */
.site-wrapper {
  max-width: 1100px;
  margin: 28px auto;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0)
  );
  box-shadow: 0 10px 30px rgba(2, 2, 2, 0.6);
}

/* brand */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #fff;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), #e67e22);
  color: white;
  font-weight: 800;
  font-family: "Segoe UI", Roboto, sans-serif;
  box-shadow: 0 6px 18px rgba(211, 84, 0, 0.12);
}

/* hero */
.hero {
  padding: 34px 8px;
}

.hero .kicker {
  display: inline-block;
  background: rgba(211, 84, 0, 0.12);
  color: #ffd8b8;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.hero h1 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero p.lead {
  color: var(--muted);
  margin-bottom: 18px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border-radius: 12px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.product-thumb {
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.cta-primary {
  background: var(--brand);
  border: none;
  box-shadow: 0 8px 18px rgba(211, 84, 0, 0.12);
}

footer.site-footer {
  padding: 20px;
  margin-top: 26px;
  border-radius: 10px;
  background: var(--glass);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .product-thumb {
    height: 140px;
  }

  .site-wrapper {
    margin: 14px;
    padding: 14px;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.blink-text {
  animation: blink 1s step-start infinite;
}

/* Paragraph styling (About section) */
#shop p {
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e0e0e0;
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-left: 4px solid #d35400; /* brand orange accent */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(211, 84, 0, 0.08);
  max-width: 850px;
  margin: 0 auto; /* center paragraph */
}

/* Heading alignment and spacing */
#shop h5 {
  color: #ffc107;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* Optional: bold key phrases */
#shop p strong {
  color: #fff;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  #shop p {
    font-size: 1rem;
    padding: 18px;
  }
}

.brand-color {
  color: #d35400;
}

.nav-link.active {
  color: #ffc107 !important; /* golden color */
  font-weight: 600;
  border-bottom: 2px solid #ffc107;
}
