/**
 * ==========================================================================
 * PV SPORT - TIENDA ONLINE PROFESIONAL DE TENIS DE MESA
 * Sistema de Diseño Deportivo Senior
 * ==========================================================================
 */

:root {
  /* Paleta Oficial PV SPORT (Extraída directamente del Logotipo Oficial) */
  --pv-black-deep: #0B1117;
  --pv-black: #111820;
  --pv-black-surface: #161D24;
  --pv-red: #FF3131;
  --pv-red-hover: #E02020;
  --pv-red-active: #C81D1D;
  --pv-white: #FFFFFF;
  --pv-gray-bg: #F4F5F6;
  --pv-gray-border: #D9DDE1;
  --pv-gray-muted: #535353;
  --pv-gray-light: #ECEFF2;
  
  /* Tipografía y Espaciado */
  --pv-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --pv-radius-sm: 3px;
  --pv-radius: 4px;
  --pv-radius-md: 6px;
  
  /* Sombras sutiles (sin sombras pesadas ni glassmorphism) */
  --pv-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --pv-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  --pv-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.12);
  
  /* Transiciones atléticas rápidas (150-250ms) */
  --pv-transition: all 180ms ease-in-out;
}

/* Reset y Bases */
body {
  font-family: var(--pv-font-main);
  background-color: var(--pv-gray-bg);
  color: var(--pv-black);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--pv-transition);
}

/* --------------------------------------------------------------------------
   1. TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-bar-black {
  background-color: var(--pv-black-deep);
  color: #C0C5CA;
  font-size: 0.8rem;
  border-bottom: 1px solid #1c242e;
}
.top-bar-black a {
  color: #C0C5CA;
}
.top-bar-black a:hover {
  color: var(--pv-white);
}

/* --------------------------------------------------------------------------
   2. MAIN HEADER
   -------------------------------------------------------------------------- */
.main-header-black {
  background-color: var(--pv-black);
  border-bottom: 1px solid #1d2530;
}

.search-input-group .form-control {
  border-radius: var(--pv-radius-sm) 0 0 var(--pv-radius-sm);
  border: 1px solid #2a3441;
  font-size: 0.9rem;
  height: 42px;
}
.search-input-group .form-control:focus {
  border-color: var(--pv-red);
  box-shadow: none;
}
.search-input-group .btn-search {
  background-color: var(--pv-red);
  color: var(--pv-white);
  border: 1px solid var(--pv-red);
  border-radius: 0 var(--pv-radius-sm) var(--pv-radius-sm) 0;
  width: 48px;
  font-size: 1.1rem;
  transition: var(--pv-transition);
}
.search-input-group .btn-search:hover {
  background-color: var(--pv-red-hover);
}

/* Live Search Dropdown */
.live-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--pv-white);
  border: 1px solid var(--pv-gray-border);
  border-radius: var(--pv-radius);
  box-shadow: var(--pv-shadow-hover);
  z-index: 1050;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}
.live-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--pv-gray-light);
  color: var(--pv-black);
}
.live-search-item:hover {
  background-color: var(--pv-gray-bg);
}
.live-search-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--pv-gray-border);
  border-radius: var(--pv-radius-sm);
  padding: 2px;
}

/* Header Action Items (Account & Cart) */
.header-action-item {
  color: var(--pv-white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: var(--pv-radius-sm);
  cursor: pointer;
  transition: var(--pv-transition);
}
.header-action-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.header-action-icon {
  font-size: 1.6rem;
  color: var(--pv-white);
}
.cart-badge-pill {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: var(--pv-red);
  color: var(--pv-white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  border: 2px solid var(--pv-black);
}

/* --------------------------------------------------------------------------
   3. NAVIGATION MENU (STICKY)
   -------------------------------------------------------------------------- */
.main-nav-bar {
  background-color: var(--pv-black-surface);
  border-bottom: 2px solid var(--pv-red);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.nav-link-custom {
  color: #DDE2E6;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--pv-transition);
}
.nav-link-custom:hover,
.nav-link-custom:focus {
  color: var(--pv-white);
  background-color: rgba(255, 255, 255, 0.05);
}
.nav-link-custom.active-home {
  background-color: var(--pv-red);
  color: var(--pv-white);
  font-weight: 700;
}

/* Dropdown menu */
.custom-dropdown-menu {
  background-color: var(--pv-black-surface);
  border: 1px solid #2a3441;
  border-radius: 0 0 var(--pv-radius) var(--pv-radius);
  box-shadow: var(--pv-shadow-hover);
  padding: 6px 0;
}
.custom-dropdown-item {
  color: #DDE2E6;
  font-size: 0.85rem;
  padding: 8px 18px;
  display: block;
  transition: var(--pv-transition);
}
.custom-dropdown-item:hover {
  background-color: var(--pv-red);
  color: var(--pv-white);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION & BENEFICIOS LATERALES (Idéntico a la Maqueta Oficial)
   -------------------------------------------------------------------------- */
.hero-wrapper {
  background-color: #06090D;
}
.hero-frame-container {
  background-color: #030609;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #161F29;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.hero-player-banner {
  min-height: 290px;
  height: 100%;
  background-color: #04080C;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .hero-player-banner {
    height: 330px;
  }
}
@media (min-width: 1200px) {
  .hero-player-banner {
    height: 355px;
  }
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 6, 9, 0) 0%,
    rgba(3, 6, 9, 0.12) 30%,
    rgba(3, 6, 9, 0.62) 50%,
    rgba(3, 6, 9, 0.90) 72%,
    rgba(3, 6, 9, 0.98) 100%
  );
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-gradient-overlay {
    background: rgba(3, 6, 9, 0.88);
  }
}
.hero-overlay-content {
  position: relative;
  z-index: 2;
  width: 58%;
  max-width: 520px;
  padding: 1.5rem 2.25rem 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .hero-overlay-content {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
  }
}
.hero-headline {
  margin-bottom: 0.5rem;
  line-height: 1.05;
  text-transform: uppercase;
  font-style: italic;
}
.hero-word-pasion {
  font-size: 2.7rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  line-height: 1;
  display: block;
}
.hero-word-porel {
  font-size: 1.7rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.15;
  display: block;
}
.hero-word-tenis {
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--pv-red); /* #FF3131 */
  letter-spacing: -0.5px;
  line-height: 1.1;
  display: block;
}
@media (max-width: 768px) {
  .hero-word-pasion { font-size: 2.1rem; }
  .hero-word-porel { font-size: 1.35rem; }
  .hero-word-tenis { font-size: 2.1rem; }
}
.hero-subtext {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 380px;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.btn-hero-cta {
  background-color: var(--pv-red);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid var(--pv-red);
  transition: var(--pv-transition);
  align-self: flex-start;
}
.btn-hero-cta:hover {
  background-color: var(--pv-red-hover);
  border-color: var(--pv-red-hover);
  color: #FFFFFF;
  transform: translateX(3px);
}

/* Columna Lateral Unificada de Beneficios */
.hero-benefits-sidebar {
  background-color: #030609;
  border-left: 1px solid #161F29;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hero-benefits-sidebar {
    border-left: none;
    border-top: 1px solid #161F29;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .hero-benefits-sidebar {
    grid-template-columns: 1fr;
  }
}
.hero-sidebar-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--pv-transition);
}
.hero-sidebar-item:last-child {
  border-bottom: none;
}
.hero-sidebar-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
}
.hero-sidebar-icon {
  font-size: 2.1rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 36px;
  flex-shrink: 0;
}
.hero-sidebar-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-sidebar-title {
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  line-height: 1.25;
  text-transform: uppercase;
}
.hero-sidebar-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   5. CATEGORÍAS DESTACADAS (4 TARJETAS CON FOTOGRAFÍA OFICIAL)
   -------------------------------------------------------------------------- */
.categories-strip {
  background-color: var(--pv-gray-bg);
}
.cat-card-item {
  background-color: #0E141A;
  border: 1px solid #1C2430;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  transition: var(--pv-transition);
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.cat-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--pv-red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.cat-card-img-wrap {
  height: 140px;
  background-color: #080C10;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #1C2430;
}
@media (min-width: 1200px) {
  .cat-card-img-wrap {
    height: 145px;
  }
}
@media (max-width: 575px) {
  .cat-card-img-wrap {
    height: 125px;
  }
}
.cat-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-card-item:hover .cat-card-img-wrap img {
  transform: scale(1.08);
}
.cat-card-body {
  padding: 14px 10px 15px 10px;
  background-color: #0E141A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cat-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--pv-white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  line-height: 1.2;
}
.cat-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: #929CA6;
  transition: var(--pv-transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cat-card-item:hover .cat-card-link {
  color: var(--pv-red);
  transform: translateX(2px);
}

/* --------------------------------------------------------------------------
   6. PRODUCTOS DESTACADOS (6 COLUMNAS)
   -------------------------------------------------------------------------- */
.section-header-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.section-header-title .text-black {
  color: var(--pv-black);
}
.section-header-title .text-red {
  color: var(--pv-red);
}

.product-box-card {
  background-color: var(--pv-white);
  border: 1px solid var(--pv-gray-border);
  border-radius: var(--pv-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: var(--pv-transition);
}
.product-box-card:hover {
  box-shadow: var(--pv-shadow-hover);
  border-color: #b5bec8;
}

.btn-favorite-heart {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: #8C96A0;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 5;
  transition: var(--pv-transition);
  padding: 4px;
}
.btn-favorite-heart:hover,
.btn-favorite-heart.active {
  color: var(--pv-red);
}

.product-card-thumb-wrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background-color: var(--pv-white);
}
.product-card-thumb-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 200ms ease;
}
.product-box-card:hover .product-card-thumb-wrap img {
  transform: scale(1.04);
}

.product-card-content {
  padding: 10px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card-brand-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pv-black);
  margin-bottom: 2px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}
.product-card-subdesc {
  font-size: 0.72rem;
  color: var(--pv-gray-muted);
  margin-bottom: 6px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--pv-black);
  margin-bottom: 4px;
}
.product-card-price-old {
  font-size: 0.8rem;
  color: var(--pv-gray-muted);
  text-decoration: line-through;
  margin-left: 4px;
  font-weight: 500;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #F5A623;
  margin-bottom: 10px;
}
.product-card-rating .review-count {
  color: var(--pv-gray-muted);
}

.btn-add-to-cart {
  background-color: var(--pv-red);
  color: var(--pv-white);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 10px;
  border-radius: var(--pv-radius-sm);
  border: none;
  width: 100%;
  text-align: center;
  transition: var(--pv-transition);
  cursor: pointer;
  margin-top: auto;
}
.btn-add-to-cart:hover {
  background-color: var(--pv-red-hover);
  color: var(--pv-white);
}

/* --------------------------------------------------------------------------
   7. BANNERS PROMOCIONALES (GOMAS & MADEROS OFICIALES)
   -------------------------------------------------------------------------- */
.promo-banner-card {
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #070B0E;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  border: 1px solid #1C2430;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: var(--pv-transition);
}
.promo-banner-card:hover {
  border-color: #313E4E;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.promo-banner-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 10, 14, 0.97) 0%,
    rgba(6, 10, 14, 0.86) 42%,
    rgba(6, 10, 14, 0.35) 70%,
    rgba(6, 10, 14, 0.05) 100%
  );
  z-index: 1;
}
@media (max-width: 575px) {
  .promo-banner-overlay {
    background: rgba(6, 10, 14, 0.88);
  }
}
.promo-banner-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem 2rem;
  max-width: 58%;
}
@media (max-width: 768px) {
  .promo-banner-content {
    max-width: 100%;
    padding: 1.5rem;
  }
}
.promo-banner-title {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--pv-white);
  line-height: 1.05;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.promo-banner-title .highlight-red {
  color: var(--pv-red); /* #FF3131 */
}
.promo-banner-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
  line-height: 1.35;
  max-width: 320px;
}
.btn-banner-outline {
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--pv-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--pv-transition);
}
.btn-banner-outline:hover {
  background-color: var(--pv-red);
  border-color: var(--pv-red);
  color: var(--pv-white);
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   8. MARCAS DESTACADAS
   -------------------------------------------------------------------------- */
.brands-row-wrap {
  background-color: var(--pv-white);
  border: 1px solid var(--pv-gray-border);
  border-radius: var(--pv-radius);
  padding: 14px 20px;
}
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 4px 10px;
  opacity: 0.85;
  transition: var(--pv-transition);
}
.brand-logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}
.brand-logo-item img,
.brand-logo-item svg {
  max-height: 32px;
  max-width: 120px;
}

/* --------------------------------------------------------------------------
   9. FRANJA DE 4 BENEFICIOS (FOOTER STRIP)
   -------------------------------------------------------------------------- */
.benefits-footer-strip {
  background-color: var(--pv-black-deep);
  border-top: 1px solid #1A222C;
  border-bottom: 1px solid #1A222C;
  color: var(--pv-white);
  padding: 24px 0;
}
.benefit-footer-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.benefit-footer-icon {
  font-size: 2rem;
  color: var(--pv-white);
}
.benefit-footer-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
  color: var(--pv-white);
}
.benefit-footer-sub {
  font-size: 0.76rem;
  color: var(--pv-gray-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. MAIN FOOTER
   -------------------------------------------------------------------------- */
.main-footer-black {
  background-color: var(--pv-black-deep);
  color: #8C96A0;
  font-size: 0.82rem;
  padding: 28px 0;
}
.main-footer-black a {
  color: #A0AAB4;
}
.main-footer-black a:hover {
  color: var(--pv-white);
}
.footer-social-icon {
  font-size: 1.1rem;
  color: #A0AAB4;
  transition: var(--pv-transition);
}
.footer-social-icon:hover {
  color: var(--pv-red);
}

/* --------------------------------------------------------------------------
   11. FICHA TÉCNICA DE PRODUCTO Y DETALLES
   -------------------------------------------------------------------------- */
.product-detail-gallery {
  background: #fff;
  border: 1px solid var(--pv-gray-border);
  border-radius: var(--pv-radius);
  padding: 20px;
}
.product-main-img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.product-specs-table {
  font-size: 0.85rem;
}
.product-specs-table th {
  background-color: #F8F9FA;
  width: 35%;
  color: #495057;
  font-weight: 600;
}
.attribute-bar-fill {
  background-color: var(--pv-red);
  height: 8px;
  border-radius: 2px;
}

/* Cantidad Selector */
.qty-input-group {
  max-width: 120px;
}
.qty-btn {
  background: var(--pv-gray-light);
  border: 1px solid var(--pv-gray-border);
  width: 36px;
  font-weight: bold;
}
.qty-input {
  text-align: center;
  border: 1px solid var(--pv-gray-border);
  font-weight: bold;
}

/* Botones Principales */
.btn-pv-primary {
  background-color: var(--pv-red);
  color: var(--pv-white);
  font-weight: 700;
  border-radius: var(--pv-radius-sm);
  border: 1px solid var(--pv-red);
  padding: 10px 20px;
  transition: var(--pv-transition);
}
.btn-pv-primary:hover {
  background-color: var(--pv-red-hover);
  border-color: var(--pv-red-hover);
  color: var(--pv-white);
}

.btn-pv-dark {
  background-color: var(--pv-black);
  color: var(--pv-white);
  font-weight: 700;
  border-radius: var(--pv-radius-sm);
  border: 1px solid var(--pv-black);
  padding: 10px 20px;
  transition: var(--pv-transition);
}
.btn-pv-dark:hover {
  background-color: #000;
  color: var(--pv-white);
}

/* WhatsApp Flotante */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 1030;
  transition: var(--pv-transition);
}
.whatsapp-float-btn:hover {
  color: #fff;
  transform: scale(1.08);
}

/* Harmonización de utilidades Bootstrap al Rojo Oficial PV SPORT */
.btn-danger {
  background-color: var(--pv-red) !important;
  border-color: var(--pv-red) !important;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
  background-color: var(--pv-red-hover) !important;
  border-color: var(--pv-red-hover) !important;
}
.btn-outline-danger {
  color: var(--pv-red) !important;
  border-color: var(--pv-red) !important;
}
.btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active {
  background-color: var(--pv-red) !important;
  border-color: var(--pv-red) !important;
  color: #fff !important;
}
.text-danger {
  color: var(--pv-red) !important;
}
.bg-danger {
  background-color: var(--pv-red) !important;
}
.badge.bg-danger {
  background-color: var(--pv-red) !important;
}
.border-danger {
  border-color: var(--pv-red) !important;
}
.hover-danger:hover {
  color: var(--pv-red) !important;
}
