/* PureBoosts — CoreBoosts-matched theme */

:root {
  --cl-accent: #D944FF !important;
  --cl-accent-rgb: 217, 68, 255 !important;
}

body {
  background: #0a0a0a !important;
}

/* Island navbar clearance on inner pages */
.py-5-nav {
  padding-top: 7rem !important;
  padding-bottom: 4rem !important;
}

header.sticky-top {
  position: static !important;
}

.section-title,
.section-title h1,
.section-title h2 {
  font-family: 'Satoshi', sans-serif !important;
  font-size: clamp(2rem, 3.5vw, 3.25rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  color: #ffffff !important;
  margin: 0 auto 1.25rem !important;
  text-align: center !important;
  text-wrap: balance;
}

.section-subtitle,
.section-subtitle p {
  font-family: 'Satoshi', sans-serif !important;
  font-size: clamp(0.875rem, 1.2vw, 1rem) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  margin: 0 auto 1.5rem !important;
  max-width: 36rem;
  text-align: center !important;
}

.text-primary,
a.text-primary {
  color: #D944FF !important;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #D944FF !important;
  border-color: #D944FF !important;
  color: #fff !important;
}

.btn-outline-primary {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: transparent !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: rgba(217, 68, 255, 0.12) !important;
  border-color: rgba(217, 68, 255, 0.45) !important;
  color: #fff !important;
}

/* Products page filters panel */
.bg-gray {
  background: #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 16px !important;
}

.bg-gray .form-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.85);
}

.bg-gray .form-control,
.form-control {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-family: 'Satoshi', sans-serif;
}
.form-control:focus {
  border-color: rgba(217, 68, 255, 0.45) !important;
  box-shadow: 0 0 0 0.2rem rgba(217, 68, 255, 0.15) !important;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Product cards — global safety net (also in product-card.njk) */
.pc {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
  height: 100%;
}
.pc:hover { border-color: rgba(255, 255, 255, 0.1); }
.pc__thumb-wrap {
  position: relative;
  margin: 10px 10px 0;
  border-radius: 14px;
  overflow: hidden !important;
  background: #141414;
}
.pc__thumb {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 14px;
  object-fit: cover !important;
}
.pc__thumb--empty {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  min-height: 140px;
}

/* Modals */
.modal-content {
  background: #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
}
.modal-header,
.modal-footer {
  border-color: rgba(255, 255, 255, 0.06) !important;
}
.modal-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Product detail polish */
.product-wrapper .py-5-nav {
  padding-top: 7rem !important;
}
.product-wrapper .card-img-top,
.product-wrapper .carousel-item img {
  border-radius: 16px;
  overflow: hidden;
}
.product-tabs .btn {
  border-radius: 9999px !important;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
}

/* Feedback / misc pages */
.testimonial {
  background: #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 14px !important;
}