/* ==========================================
   VILCAR CONTRATISTAS - ESTILOS PERSONALIZADOS
   Archivo: vilcar-custom.css
   Versión: 3.0 - Rediseño Moderno
   Inspiración: All Racing Perú
   Paleta: Rojo #dc3545, Negro #1a1a1a, Blanco #ffffff
   ========================================== */

:root {
  --vilcar-red: #dc3545;
  --vilcar-red-dark: #c82333;
  --vilcar-red-light: #ff4757;
  --vilcar-red-hover: #bd2130;
  --vilcar-black: #1a1a1a;
  --vilcar-black-light: #2d2d2d;
  --vilcar-gray: #f8f9fa;
  --vilcar-gray-dark: #6c757d;
  --vilcar-border: #e0e0e0;
  --vilcar-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
  --vilcar-shadow-hover: 0 15px 50px rgba(220, 53, 69, 0.25);
  --vilcar-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --vilcar-transition-fast: all 0.2s ease;
  --vilcar-font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ==========================================
   0. RESET Y ESTILOS GLOBALES
   ========================================== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--vilcar-font-primary);
  color: var(--vilcar-black);
  overflow-x: hidden;
}

a {
  transition: var(--vilcar-transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================
   1. HEADER Y NAVEGACIÓN MEJORADOS - ESTILO ALL RACING
   ========================================== */

/* Header Principal - Sticky con sombra moderna */
.site__header {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: var(--vilcar-transition);
}

.site__header.header-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Topbar - Barra superior con estilo moderno */
.topbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__link {
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 500;
  transition: var(--vilcar-transition-fast);
  position: relative;
  padding: 5px 0;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 12px;
}

.topbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vilcar-red);
  transition: width 0.3s ease;
}

.topbar__link:hover {
  color: var(--vilcar-red) !important;
  text-decoration: none;
}

.topbar__link:hover::after {
  width: 100%;
}

/* Menú de idioma modernizado */
.topbar__menu-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  transition: var(--vilcar-transition-fast);
}

.topbar__menu-button:hover {
  background: var(--vilcar-red);
  border-color: var(--vilcar-red);
  transform: translateY(-2px);
}

.topbar__button-label,
.topbar__button-title {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
}

/* ==========================================
   2. LOGO Y NAVBAR - ESTILO MODERNO
   ========================================== */

/* Logo mejorado */
.header__logo {
  padding: 20px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.logo__slogan {
  font-size: 11px;
  color: var(--vilcar-gray-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.logo__image img {
  transition: var(--vilcar-transition-fast);
  filter: brightness(1);
}

.logo:hover .logo__image img {
  filter: brightness(1.1);
  transform: scale(1.02);
}

/* Navbar con departamentos */
.departments__button {
  background: var(--vilcar-red);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  transition: var(--vilcar-transition-fast);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.departments__button:hover {
  background: var(--vilcar-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.departments__button-icon svg {
  fill: white;
}

.departments__button-title {
  color: white;
  font-weight: 600;
}

/* Menú principal mejorado */
.main-menu__list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu__link {
  color: var(--vilcar-black);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 0;
  position: relative;
  transition: var(--vilcar-transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.main-menu__link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--vilcar-red);
  transition: width 0.3s ease;
}

.main-menu__link:hover {
  color: var(--vilcar-red);
  text-decoration: none;
}

.main-menu__link:hover::after {
  width: 100%;
}

/* Teléfono de contacto */
.phone__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--vilcar-transition-fast);
}

.phone__body:hover {
  background: var(--vilcar-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
  text-decoration: none;
}

.phone__title {
  font-size: 11px;
  color: var(--vilcar-black);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--vilcar-transition-fast);
}

.phone__number {
  font-size: 16px;
  font-weight: 700;
  color: var(--vilcar-black);
  transition: var(--vilcar-transition-fast);
}

.phone__body:hover .phone__title,
.phone__body:hover .phone__number {
  color: white;
}

/* ==========================================
   3. BUSCADOR PRINCIPAL - ESTILO ALL RACING
   ========================================== */
.header__search {
  padding: 25px 0;
}

.search {
  max-width: 900px;
  margin: 0 auto;
}

.search__body {
  background: white;
  border: 2px solid var(--vilcar-border);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--vilcar-transition);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.search__body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.03), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.search__body:hover::before {
  transform: translateX(100%);
}

.search__body:hover,
.search__body:focus-within {
  border-color: var(--vilcar-red);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.2);
  transform: translateY(-2px);
}

.search__input {
  border: none !important;
  padding: 16px 30px !important;
  font-size: 15px !important;
  color: var(--vilcar-black);
  background: transparent;
  flex: 1;
  font-weight: 400;
}

.search__input:focus {
  outline: none;
  box-shadow: none !important;
}

.search__input::placeholder {
  color: #999;
  font-weight: 400;
}

.search__button--end {
  background: var(--vilcar-red) !important;
  border: none !important;
  padding: 16px 40px !important;
  transition: var(--vilcar-transition);
  border-radius: 0 50px 50px 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.search__button--end::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.search__button--end:hover::before {
  width: 300px;
  height: 300px;
}

.search__button--end:hover {
  background: var(--vilcar-red-hover) !important;
  transform: scale(1.02);
}

.search__button-icon i {
  color: white !important;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

/* ==========================================
   5. SLIDER/CAROUSEL PRINCIPAL - ESTILO ALL RACING
   ========================================== */
.block-slideshow {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  background: var(--vilcar-black);
}

.block-slideshow__carousel {
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.block-slideshow__item {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vilcar-black);
}

/* Overlay con gradiente moderno */
.block-slideshow__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.85) 0%,
      rgba(220, 53, 69, 0.65) 50%,
      rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: var(--vilcar-transition);
}

.block-slideshow__item:hover::before {
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.75) 0%,
      rgba(220, 53, 69, 0.55) 50%,
      rgba(0, 0, 0, 0.75) 100%);
}

/* Imagen con efecto parallax */
.block-slideshow__item-image {
  transition: transform 1s ease-out;
  background-size: cover !important;
  background-position: center !important;
  will-change: transform;
}

.block-slideshow__item:hover .block-slideshow__item-image {
  transform: scale(1.05);
}

/* Contenido del slide */
.block-slideshow__item-title,
.block-slideshow__item-offer,
.block-slideshow__item-button {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

/* Badge de oferta */
.block-slideshow__item-offer {
  background: var(--vilcar-red);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
  animation-delay: 0.2s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid white;
  display: inline-block;
  margin-bottom: 20px;
  color: white;
}

/* Título principal */
.block-slideshow__item-title {
  font-size: 56px;
  font-weight: 900;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.8),
    4px 4px 20px rgba(220, 53, 69, 0.5);
  margin: 25px 0;
  animation-delay: 0.4s;
  line-height: 1.1;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Botón CTA */
.block-slideshow__item-button {
  background: white !important;
  color: var(--vilcar-black) !important;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--vilcar-transition);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
  animation-delay: 0.6s;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 3px solid white;
  display: inline-block;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.block-slideshow__item-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--vilcar-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.block-slideshow__item-button:hover::before {
  width: 400px;
  height: 400px;
}

.block-slideshow__item-button:hover {
  color: white !important;
  border-color: var(--vilcar-red);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.6);
}

.block-slideshow__item-button span {
  position: relative;
  z-index: 1;
}

/* ==========================================
   6. CATEGORÍAS - DISEÑO DINÁMICO ESTILO ALL RACING
   ========================================== */

.block-categories {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.97) 0%, rgba(45, 45, 45, 0.97) 100%),
    url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1920&q=80') center/cover;
  background-attachment: fixed;
  padding: 90px 0;
  position: relative;
}

.block-categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(220, 53, 69, 0.15) 0%,
      transparent 50%,
      rgba(220, 53, 69, 0.1) 100%);
  pointer-events: none;
  animation: pulse-bg 10s ease-in-out infinite;
}

@keyframes pulse-bg {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.block-categories__title {
  color: white !important;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.block-categories__title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--vilcar-red);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Tarjetas de categoría modernizadas - Versión 2.0 */
.category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--vilcar-transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--vilcar-red) 0%, var(--vilcar-red-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: 20px;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(220, 53, 69, 0.4);
  border-color: var(--vilcar-red);
}

.category-card:hover::before {
  opacity: 0.05;
}

.category-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Imagen de categoría mejorada - imagen completa visible */
.category-card__image {
  overflow: hidden;
  position: relative;
  max-height: 280px;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.category-card__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.02) 50%,
    rgba(220, 53, 69, 0.08) 100%);
  z-index: 1;
  opacity: 0;
  transition: var(--vilcar-transition);
  pointer-events: none;
}


/* Información de categoría mejorada */
.category-card__info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

.category-card__name {
  padding-bottom: 15px;
  border-bottom: 2px solid var(--vilcar-gray);
}

.category-card__name a {
  color: var(--vilcar-black);
  font-weight: 700;
  font-size: 20px;
  transition: var(--vilcar-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.category-card__name a::after {
  content: '→';
  font-size: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--vilcar-transition);
}

.category-card__name a:hover {
  color: var(--vilcar-red);
  text-decoration: none;
  transform: translateX(5px);
}

.category-card__name a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Subcategorías mejoradas con badges */
.category-card__children {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}

.category-card__children li {
  margin: 0;
  color: transparent;
}

.category-card__children a {
  color: var(--vilcar-gray-dark);
  font-size: 13px;
  transition: var(--vilcar-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  font-weight: 500;
  border: 1px solid var(--vilcar-border);
  position: relative;
  overflow: hidden;
}

.category-card__children a::before {
    color: white;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--vilcar-red) 0%, var(--vilcar-red-dark) 100%);
  opacity: 0;
  transition: var(--vilcar-transition);
  z-index: 0;
}

.category-card__children a::after {
  content: '▸';
  font-size: 12px;
  color: white;
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--vilcar-transition);
  position: relative;
  z-index: 1;
}

.category-card__children a:hover {
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-color: var(--vilcar-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.category-card__children a:hover::after {
  opacity: 1;
  transform: translateX(0);
  color: white;
}

.category-card__children a span {
  position: relative;
  z-index: 1;
  transition: var(--vilcar-transition);
}

/* Badge contador de subcategorías */
.category-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vilcar-red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  margin-left: auto;
  margin-top: -5px;
  margin-bottom: 10px;
}

/* ==========================================
   7. TARJETAS DE PRODUCTOS - ESTILO OPTIMIZADO
   ========================================== */

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--vilcar-transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--vilcar-red) 0%, var(--vilcar-red-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: 15px;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(220, 53, 69, 0.25);
  border-color: var(--vilcar-red);
}

.product-card:hover::before {
  opacity: 0.03;
}

.product-card__image {
  position: relative;
  overflow: hidden;
  background: #fafafa;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05));
  opacity: 0;
  transition: var(--vilcar-transition);
  z-index: 1;
  pointer-events: none;
}

.product-card:hover .product-card__image::before {
  opacity: 1;
}

.product-card__image .image__tag {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image .image__tag {
  transform: scale(1.1);
}

.product-card__badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card__info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card__meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.product-card__meta-title {
  font-weight: 600;
  color: #666;
}

.product-card__name {
  margin: 10px 0;
  flex-grow: 1;
}

.product-card__name a {
  color: var(--vilcar-black);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--vilcar-transition);
}

.product-card__name a:hover {
  color: var(--vilcar-red);
  text-decoration: none;
}

.product-card__footer {
  padding: 0 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
  margin-top: auto;
}

.product-card__prices {
  flex-grow: 1;
  padding-left: 20px;
}

.product-card__price--current {
  color: var(--vilcar-red);
  font-size: 22px;
  font-weight: 800;
}

.product-card__addtocart-icon,
.bg-success.text-white {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--vilcar-transition);
  margin-left: 8px;
}

.product-card__addtocart-icon {
  background: var(--vilcar-red);
  color: white;
  border: none;
}

.bg-success.text-white:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* ==========================================
   6. SECCIÓN DE MARCAS
   ========================================== */

.block-brands {
  background: white;
  padding: 60px 0;
}

.block-brands__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.block-brands__item {
  transition: var(--vilcar-transition);
}

.block-brands__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 2px solid var(--vilcar-border);
  border-radius: 12px;
  transition: var(--vilcar-transition);
  background: white;
  min-width: 150px;
}

.block-brands__item-link:hover {
  border-color: var(--vilcar-red);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
  text-decoration: none;
}

.block-brands__item-link img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: grayscale(100%);
  transition: var(--vilcar-transition);
}

.block-brands__item-link:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.block-brands__item-link span {
  color: var(--vilcar-black);
  font-size: 14px;
  transition: var(--vilcar-transition);
}

.block-brands__item-link:hover span {
  color: var(--vilcar-red);
}

/* ==========================================
   7. CARACTERÍSTICAS/FEATURES
   ========================================== */

.block-features {
  background: var(--vilcar-gray);
  padding: 50px 0;
}

.block-features__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.block-features__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  transition: var(--vilcar-transition);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.block-features__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}

.block-features__item-icon {
  flex-shrink: 0;
}

.block-features__item-icon i {
  font-size: 40px;
  color: var(--vilcar-red);
}

.block-features__item-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--vilcar-black);
  margin-bottom: 5px;
}

.block-features__item-subtitle {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* ==========================================
   8. ANIMACIONES MODERNAS
   ========================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Clases de animación */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Efecto shimmer para loading */
.shimmer {
  background: linear-gradient(90deg,
      rgba(220, 53, 69, 0.1) 0%,
      rgba(220, 53, 69, 0.3) 50%,
      rgba(220, 53, 69, 0.1) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* ==========================================
   9. HEADER MÓVIL - DISEÑO MEJORADO
   ========================================== */

.site__mobile-header {
  background: linear-gradient(135deg, var(--vilcar-black) 0%, var(--vilcar-black-light) 100%);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid var(--vilcar-red);
}

.mobile-header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.mobile-header__menu-button {
  background: var(--vilcar-red);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--vilcar-transition-fast);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.mobile-header__menu-button:hover,
.mobile-header__menu-button:active {
  background: var(--vilcar-red-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(220, 53, 69, 0.5);
}

.mobile-header__menu-button svg {
  fill: white;
}

.mobile-header__logo {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 15px;
}

.mobile-header__logo img {
  max-height: 45px;
  width: auto;
}

/* Mobile Search */
.mobile-search__body {
  background: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-search__input {
  border: none;
  padding: 12px 20px;
  font-size: 14px;
}

.mobile-search__button {
  background: var(--vilcar-red);
  border: none;
  color: white;
  padding: 12px 20px;
  transition: var(--vilcar-transition-fast);
}

.mobile-search__button:hover {
  background: var(--vilcar-red-hover);
}

/* Mobile Indicators */
.mobile-indicator__button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--vilcar-transition-fast);
  color: white;
}

.mobile-indicator__button:hover {
  background: var(--vilcar-red);
  border-color: var(--vilcar-red);
  transform: scale(1.05);
}

.mobile-indicator__counter {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--vilcar-red);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--vilcar-black);
}

/* ==========================================
   10. BANNERS DE INFORMACIÓN - ESTILO MODERNO
   ========================================== */

.info-banner {
  position: relative;
  overflow: hidden;
  transition: var(--vilcar-transition);
}

.info-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--vilcar-transition);
}

.info-banner:hover::before {
  opacity: 1;
  animation: float 3s ease-in-out infinite;
}

.info-banner:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(220, 53, 69, 0.5) !important;
}

.info-banner i {
  transition: var(--vilcar-transition);
}

.info-banner:hover i {
  transform: scale(1.1) rotate(5deg);
}

/* ==========================================
   11. BOTÓN WHATSAPP FLOTANTE MEJORADO
   ========================================== */

.whatsapp {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 34px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: var(--vilcar-transition);
  animation: pulse 2s infinite;
  border: 3px solid white;
}

.whatsapp::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
  animation: none;
}

.whatsapp i {
  position: relative;
  z-index: 1;
}

/* ==========================================
   10. RESPONSIVE - DISEÑO OPTIMIZADO PARA MÓVILES
   ========================================== */

/* Tablets y pantallas medianas */
@media (max-width: 1199px) {
  .main-menu__list {
    gap: 20px;
  }

  .main-menu__link {
    font-size: 14px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .block-slideshow__item {
    min-height: 500px;
  }

  .block-slideshow__item-title {
    font-size: 42px;
  }

  .block-slideshow__item-offer {
    font-size: 16px;
    padding: 10px 28px;
  }

  .block-slideshow__item-button {
    padding: 15px 35px;
    font-size: 15px;
  }

  .block-categories__title {
    font-size: 38px;
  }

  .category-card {
    min-height: 400px;
  }

  .category-card__image {
    height: 240px;
    padding: 15px;
  }

  .category-card__name a {
    font-size: 20px;
  }

  .category-card__children a {
    font-size: 12px;
    padding: 6px 12px;
  }

  .search {
    max-width: 100%;
  }
}

/* Móviles */
@media (max-width: 768px) {

  /* Header móvil */
  .site__header {
    border-bottom: 1px solid var(--vilcar-red);
  }

  .header__topbar-classic {
    padding: 8px 0;
  }

  .topbar__link {
    font-size: 11px;
  }

  /* Slider móvil */
  .block-slideshow__item {
    min-height: 450px;
  }

  .block-slideshow__item-title {
    font-size: 32px;
    letter-spacing: 1px;
    text-align: center;
  }

  .block-slideshow__item-offer {
    font-size: 14px;
    padding: 8px 20px;
    letter-spacing: 1px;
  }

  .block-slideshow__item-button {
    padding: 14px 30px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  /* Controles del carousel móvil */
  .block-slideshow .owl-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .block-slideshow .owl-carousel .owl-dots {
    bottom: 20px;
  }

  /* Buscador móvil */
  .header__search {
    padding: 15px 0;
  }

  .search__input {
    padding: 14px 20px !important;
    font-size: 14px !important;
  }

  .search__button--end {
    padding: 14px 25px !important;
  }

  .search__button-icon i {
    font-size: 20px;
  }

  /* Categorías móvil */
  .block-categories {
    padding: 60px 0;
  }

  .block-categories__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .category-card {
    min-height: 380px;
  }

  .category-card__image {
    height: 220px;
    padding: 15px;
  }

  .category-card__info {
    padding: 15px;
  }

  .category-card__name {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .category-card__name a {
    font-size: 18px;
  }

  .category-card__children {
    gap: 8px;
  }

  .category-card__children a {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Productos móvil */
  .product-card__image {
    height: 200px;
  }

  /* Features móvil */
  .block-features__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .block-features__item {
    padding: 20px;
  }

  /* Indicadores móvil */
  .indicator__button {
    padding: 10px 12px;
  }

  .indicator__title {
    font-size: 10px;
  }

  .indicator__value {
    font-size: 12px;
  }

  /* WhatsApp móvil */
  .whatsapp {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .block-slideshow__item {
    min-height: 380px;
  }

  .block-slideshow__item-title {
    font-size: 26px;
  }

  .block-slideshow__item-offer {
    font-size: 13px;
    padding: 7px 18px;
  }

  .block-slideshow__item-button {
    padding: 12px 25px;
    font-size: 13px;
  }

  .block-slideshow .owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .block-categories__title {
    font-size: 26px;
  }

  .category-card {
    min-height: 350px;
  }

  .category-card__image {
    height: 180px;
    padding: 10px;
  }

  .category-card__info {
    padding: 15px;
  }

  .category-card__name a {
    font-size: 16px;
  }

  .category-card__children {
    gap: 6px;
  }

  .category-card__children a {
    font-size: 11px;
    padding: 5px 10px;
  }

  .product-card__image {
    height: 180px;
  }

  .search__input {
    padding: 12px 18px !important;
    font-size: 13px !important;
  }

  .search__button--end {
    padding: 12px 20px !important;
  }

  .whatsapp {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    font-size: 26px;
  }

  /* Carrito Responsive */
  .vilcar-cart-header .block-header__title {
    font-size: 26px;
  }

  .vilcar-cart-header__subtitle {
    font-size: 14px;
  }

  .vilcar-cart-products {
    padding: 20px;
  }

  .vilcar-cart-products__title {
    font-size: 20px;
  }

  .vilcar-cart-table .cart-table__head {
    display: none;
  }

  .vilcar-cart-table .cart-table__body tr {
    display: flex;
    flex-direction: column;
    padding: 15px;
    margin-bottom: 15px;
  }

  .vilcar-cart-table .cart-table__body td {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--vilcar-gray);
  }

  .vilcar-cart-table .cart-table__body td:before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--vilcar-black);
  }

  .cart-table__column--image {
    width: auto !important;
    justify-content: center;
  }

  .cart-table__column--image img {
    width: 120px;
    height: 120px;
  }

  .vilcar-cart-actions {
    flex-direction: column;
  }

  .vilcar-cart-actions__button {
    width: 100%;
  }

  .vilcar-cart-summary {
    position: static;
    margin-top: 30px;
  }

  .vilcar-cart-info {
    margin-top: 20px;
  }

  .vilcar-empty-cart {
    padding: 50px 20px;
  }

  .vilcar-empty-cart__icon {
    font-size: 60px;
  }

  .vilcar-empty-cart__title {
    font-size: 22px;
  }
}

/* ==========================================
   12. CARRITO DE COMPRAS - DISEÑO MODERNO
   ========================================== */

/* Header del Carrito */
.vilcar-cart-header {
  background: linear-gradient(135deg, var(--vilcar-gray) 0%, #ffffff 100%);
  padding: 40px 0;
  border-bottom: 3px solid var(--vilcar-red);
}

.vilcar-cart-header__content {
  text-align: center;
  margin-top: 20px;
}

.vilcar-cart-header .block-header__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--vilcar-black);
  margin-bottom: 10px;
}

.vilcar-cart-header .block-header__title i {
  color: var(--vilcar-red);
  margin-right: 10px;
}

.vilcar-cart-header__subtitle {
  font-size: 16px;
  color: var(--vilcar-gray-dark);
  margin: 0;
}

/* Breadcrumb mejorado */
.breadcrumb__item-link {
  color: var(--vilcar-gray-dark);
  transition: var(--vilcar-transition-fast);
}

.breadcrumb__item-link:hover {
  color: var(--vilcar-red);
  text-decoration: none;
}

.breadcrumb__item--current .breadcrumb__item-link {
  color: var(--vilcar-red);
  font-weight: 600;
}

/* Bloque del Carrito */
.vilcar-cart-block {
  padding: 60px 0;
  background: var(--vilcar-gray);
}

/* Productos del Carrito */
.vilcar-cart-products {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: var(--vilcar-transition);
}

.vilcar-cart-products:hover {
  border-color: var(--vilcar-red);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
}

.vilcar-cart-products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--vilcar-gray);
}

.vilcar-cart-products__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin: 0;
}

.vilcar-cart-products__title i {
  color: var(--vilcar-red);
  margin-right: 10px;
}

.vilcar-cart-products__count {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

/* Tabla del Carrito Mejorada */
.vilcar-cart-table .cart-table__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.vilcar-cart-table .cart-table__head {
  background: linear-gradient(135deg, var(--vilcar-black) 0%, var(--vilcar-black-light) 100%);
}

.vilcar-cart-table .cart-table__head th {
  color: white;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px;
  border: none;
}

.vilcar-cart-table .cart-table__head th:first-child {
  border-radius: 10px 0 0 10px;
}

.vilcar-cart-table .cart-table__head th:last-child {
  border-radius: 0 10px 10px 0;
}

.vilcar-cart-table .cart-table__body tr {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--vilcar-transition);
}

.vilcar-cart-table .cart-table__body tr:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}

.vilcar-cart-table .cart-table__body td {
  padding: 20px 15px;
  vertical-align: middle;
  border: none;
}

.vilcar-cart-table .cart-table__body tr td:first-child {
  border-radius: 10px 0 0 10px;
}

.vilcar-cart-table .cart-table__body tr td:last-child {
  border-radius: 0 10px 10px 0;
}

/* Columna de Imagen */
.cart-table__column--image {
  width: 100px;
}

.cart-table__column--image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--vilcar-gray);
  padding: 5px;
  transition: var(--vilcar-transition);
}

.cart-table__body tr:hover .cart-table__column--image img {
  transform: scale(1.1);
}

/* Columna de Producto */
.cart-table__column--product {
  font-weight: 600;
  color: var(--vilcar-black);
  font-size: 15px;
}

/* Columna de Precio */
.cart-table__column--price {
  color: var(--vilcar-red);
  font-weight: 700;
  font-size: 18px;
}

/* Columna de Cantidad */
.cart-table__column--quantity input {
  width: 80px;
  text-align: center;
  border: 2px solid var(--vilcar-border);
  border-radius: 8px;
  padding: 8px;
  font-weight: 600;
  transition: var(--vilcar-transition-fast);
}

.cart-table__column--quantity input:focus {
  border-color: var(--vilcar-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Columna de Total */
.cart-table__column--total {
  color: var(--vilcar-black);
  font-weight: 800;
  font-size: 20px;
}

/* Botón de Eliminar */
.cart-table__column--remove button {
  background: transparent;
  border: 2px solid #e0e0e0;
  color: var(--vilcar-gray-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--vilcar-transition-fast);
}

.cart-table__column--remove button:hover {
  background: var(--vilcar-red);
  border-color: var(--vilcar-red);
  color: white;
  transform: rotate(90deg) scale(1.1);
}

/* Carrito Vacío */
.vilcar-empty-cart {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--vilcar-gray) 0%, #ffffff 100%);
  border-radius: 15px;
  margin: 20px 0;
}

.vilcar-empty-cart__icon {
  font-size: 80px;
  color: var(--vilcar-border);
  margin-bottom: 20px;
}

.vilcar-empty-cart__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin-bottom: 10px;
}

.vilcar-empty-cart__message {
  font-size: 16px;
  color: var(--vilcar-gray-dark);
  margin-bottom: 30px;
}

.vilcar-empty-cart__button {
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Acciones del Carrito */
.vilcar-cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid var(--vilcar-gray);
}

.vilcar-cart-actions__button {
  flex: 1;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: var(--vilcar-transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.vilcar-cart-actions__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Resumen del Carrito */
.vilcar-cart-summary {
  position: sticky;
  top: 100px;
}

.vilcar-cart-summary__card {
  border-radius: 15px;
  border: 2px solid var(--vilcar-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: var(--vilcar-transition);
}

.vilcar-cart-summary__card:hover {
  border-color: var(--vilcar-red);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
}

.vilcar-cart-summary__card .card-body {
  padding: 30px;
}

.vilcar-cart-summary__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--vilcar-gray);
}

.vilcar-cart-summary__title i {
  color: var(--vilcar-red);
  margin-right: 10px;
}

/* Detalles del Resumen */
.vilcar-cart-summary__details {
  margin-bottom: 25px;
}

.vilcar-cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 15px;
}

.vilcar-cart-summary__label {
  color: var(--vilcar-gray-dark);
  font-weight: 500;
}

.vilcar-cart-summary__value {
  color: var(--vilcar-black);
  font-weight: 700;
}

.vilcar-cart-summary__row--discount {
  color: #28a745;
}

.vilcar-cart-summary__divider {
  height: 2px;
  background: var(--vilcar-gray);
  margin: 15px 0;
}

.vilcar-cart-summary__row--total {
  padding: 20px 0;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
  padding: 20px;
  border-radius: 10px;
  margin-top: 10px;
}

.vilcar-cart-summary__row--total .vilcar-cart-summary__label {
  color: var(--vilcar-black);
  font-weight: 700;
  font-size: 18px;
}

.vilcar-cart-summary__row--total .vilcar-cart-summary__value {
  color: var(--vilcar-red);
  font-weight: 900;
  font-size: 28px;
}

/* Botón de Checkout */
.vilcar-cart-summary__checkout {
  background: linear-gradient(135deg, var(--vilcar-red) 0%, var(--vilcar-red-dark) 100%);
  border: none;
  border-radius: 50px;
  padding: 18px 30px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
  transition: var(--vilcar-transition);
  position: relative;
  overflow: hidden;
}

.vilcar-cart-summary__checkout::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.vilcar-cart-summary__checkout:hover::before {
  width: 400px;
  height: 400px;
}

.vilcar-cart-summary__checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 53, 69, 0.6);
  text-decoration: none;
}

.vilcar-cart-summary__checkout i {
  margin-right: 10px;
}

/* Seguridad */
.vilcar-cart-summary__security {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  color: #28a745;
  font-weight: 600;
  font-size: 14px;
}

.vilcar-cart-summary__security i {
  margin-right: 8px;
}

/* Información Adicional */
.vilcar-cart-info {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--vilcar-border);
}

.vilcar-cart-info__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--vilcar-gray);
}

.vilcar-cart-info__item:last-child {
  border-bottom: none;
}

.vilcar-cart-info__item i {
  font-size: 28px;
  color: var(--vilcar-red);
  width: 40px;
  text-align: center;
}

.vilcar-cart-info__content {
  flex: 1;
}

.vilcar-cart-info__content strong {
  display: block;
  color: var(--vilcar-black);
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 15px;
}

.vilcar-cart-info__content span {
  color: var(--vilcar-gray-dark);
  font-size: 13px;
}

/* ==========================================
   12.1 FIX - DROPDOWN DEL CARRITO
   ========================================== */

/* Asegurar que el dropdown del carrito se muestre correctamente */
.indicator__content {
  z-index: 10000 !important;
  position: absolute;
  top: 100%;
  right: 0;
}

.indicator--open .indicator__content {
  z-index: 10000 !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: rotateX(0deg) !important;
  transition-delay: 0s !important;
}

/* Asegurar que el header no corte el dropdown */
.header__indicators {
  overflow: visible !important;
}

.indicator {
  overflow: visible !important;
  position: relative;
}

/* Dropcart estilos base */
.dropcart {
  min-width: 320px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 20px;
}

/* ==========================================
   14. CHECKOUT - DISEÑO MODERNO
   ========================================== */

/* Header del Checkout */
.vilcar-checkout-header {
  background: linear-gradient(135deg, var(--vilcar-gray) 0%, #ffffff 100%);
  padding: 40px 0;
  border-bottom: 3px solid var(--vilcar-red);
}

.vilcar-checkout-header__content {
  text-align: center;
  margin-top: 20px;
}

.vilcar-checkout-header .block-header__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--vilcar-black);
  margin-bottom: 10px;
}

.vilcar-checkout-header .block-header__title i {
  color: var(--vilcar-red);
  margin-right: 10px;
}

.vilcar-checkout-header__subtitle {
  font-size: 16px;
  color: var(--vilcar-gray-dark);
  margin: 0;
}

/* Indicador de Progreso */
.vilcar-checkout-progress {
  background: white;
  padding: 30px 0;
  border-bottom: 1px solid var(--vilcar-border);
}

.vilcar-progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.vilcar-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.vilcar-progress-step__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--vilcar-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--vilcar-gray-dark);
  transition: var(--vilcar-transition);
  border: 3px solid var(--vilcar-border);
}

.vilcar-progress-step.completed .vilcar-progress-step__icon {
  background: var(--vilcar-red);
  color: white;
  border-color: var(--vilcar-red);
}

.vilcar-progress-step.active .vilcar-progress-step__icon {
  background: white;
  color: var(--vilcar-red);
  border-color: var(--vilcar-red);
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2);
}

.vilcar-progress-step__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--vilcar-gray-dark);
}

.vilcar-progress-step.completed .vilcar-progress-step__label,
.vilcar-progress-step.active .vilcar-progress-step__label {
  color: var(--vilcar-black);
}

.vilcar-progress-step__line {
  width: 100px;
  height: 3px;
  background: var(--vilcar-border);
  margin: 0 15px;
  margin-bottom: 30px;
}

.vilcar-progress-step__line.completed {
  background: var(--vilcar-red);
}

/* Bloque del Checkout */
.vilcar-checkout-block {
  background: var(--vilcar-gray);
  padding: 50px 0;
}

/* Tarjetas del Checkout */
.vilcar-checkout-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--vilcar-transition);
}

.vilcar-checkout-card:hover {
  border-color: var(--vilcar-red);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
}

.vilcar-checkout-card__header {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-bottom: 2px solid var(--vilcar-gray);
  position: relative;
}

.vilcar-checkout-card__icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--vilcar-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  margin-right: 15px;
  flex-shrink: 0;
}

.vilcar-checkout-card__title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--vilcar-black);
}

.vilcar-checkout-card__title p {
  margin: 3px 0 0;
  font-size: 13px;
  color: var(--vilcar-gray-dark);
}

.vilcar-checkout-card__step {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--vilcar-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.vilcar-checkout-card__body {
  padding: 25px;
}

/* Formularios */
.vilcar-form-group {
  margin-bottom: 20px;
}

.vilcar-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vilcar-black);
  margin-bottom: 8px;
}

.vilcar-form-group label i {
  color: var(--vilcar-red);
  margin-right: 6px;
  width: 16px;
}

.vilcar-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--vilcar-border);
  border-radius: 8px;
  font-size: 14px;
  transition: var(--vilcar-transition-fast);
  background: white;
}

.vilcar-input:focus {
  border-color: var(--vilcar-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.vilcar-input::placeholder {
  color: #aaa;
}

/* Estilos para selects nativos */
select.vilcar-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--vilcar-border);
  border-radius: 8px;
  font-size: 14px;
  transition: var(--vilcar-transition-fast);
  background: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
  cursor: pointer;
}

select.vilcar-select:focus {
  border-color: var(--vilcar-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

select.vilcar-select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Sobrescribir estilos de form-control para vilcar-select */
select.form-control.vilcar-select {
  height: 46px !important;
  padding: 12px 35px 12px 15px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  background-color: white !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px !important;
}

/* Sobrescribir estilos de validación para vilcar-select */
select.vilcar-select.valid,
select.vilcar-select.is-valid,
select.form-control.vilcar-select.valid,
select.form-control.vilcar-select.is-valid {
  background-color: white !important;
  border-color: var(--vilcar-border) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
}

select.vilcar-select.invalid,
select.vilcar-select.is-invalid,
select.form-control.vilcar-select.invalid,
select.form-control.vilcar-select.is-invalid {
  border-color: #dc3545 !important;
  background-color: white !important;
}

/* Estilos para selects nativos en formularios */
.vilcar-form-group {
  position: relative;
  margin-bottom: 20px;
}

.vilcar-form-group .vilcar-select {
  width: 100%;
  padding: 10px 35px 10px 12px;
  border: 2px solid var(--vilcar-border);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  transition: var(--vilcar-transition-fast);
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  color: var(--vilcar-black);
}

.vilcar-form-group .vilcar-select:focus {
  border-color: var(--vilcar-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.vilcar-form-group .vilcar-select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.7;
  color: #999;
}

.vilcar-form-group .vilcar-select option {
  padding: 10px;
  font-size: 14px;
}

.vilcar-form-group .vilcar-select option:checked {
  background: var(--vilcar-red);
  color: white;
}

/* Fix para Bootstrap Select en vilcar-form-group */
.vilcar-form-group .bootstrap-select {
  width: 100% !important;
}

.vilcar-form-group .bootstrap-select > .dropdown-toggle {
  width: 100% !important;
  padding: 12px 40px 12px 15px !important;
  border: 2px solid var(--vilcar-border) !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  background: white !important;
  height: auto !important;
  text-align: left !important;
  white-space: normal !important;
}

.vilcar-form-group .bootstrap-select > .dropdown-toggle .filter-option {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  width: calc(100% - 20px);
}

.vilcar-form-group .bootstrap-select > .dropdown-toggle:focus {
  border-color: var(--vilcar-red) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.vilcar-form-group .bootstrap-select.open {
  z-index: 1050 !important;
}

.vilcar-form-group .bootstrap-select .dropdown-menu {
  z-index: 1060 !important;
  border: 2px solid var(--vilcar-border) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  margin-top: 2px !important;
}

/* Upload de Archivos */
.vilcar-file-upload {
  position: relative;
}

.vilcar-file-upload__input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.vilcar-file-upload__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border: 2px dashed var(--vilcar-border);
  border-radius: 10px;
  background: #fafafa;
  cursor: pointer;
  transition: var(--vilcar-transition);
  text-align: center;
}

.vilcar-file-upload__label:hover {
  border-color: var(--vilcar-red);
  background: rgba(220, 53, 69, 0.05);
}

.vilcar-file-upload__label i {
  font-size: 40px;
  color: var(--vilcar-red);
  margin-bottom: 15px;
}

.vilcar-file-upload__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--vilcar-black);
  margin-bottom: 5px;
}

.vilcar-file-upload__hint {
  font-size: 12px;
  color: var(--vilcar-gray-dark);
}

/* Resumen del Checkout */
.vilcar-checkout-summary {
  position: sticky;
  top: 100px;
}

.vilcar-checkout-summary__card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 20px;
}

.vilcar-checkout-summary__header {
  padding: 20px;
  background: var(--vilcar-black);
  color: white;
}

.vilcar-checkout-summary__header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.vilcar-checkout-summary__header i {
  margin-right: 10px;
}

.vilcar-checkout-summary__body {
  padding: 20px;
}

.vilcar-checkout-summary__table {
  width: 100%;
  margin-bottom: 20px;
}

.vilcar-checkout-summary__table th {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--vilcar-gray-dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--vilcar-gray);
}

.vilcar-checkout-summary__table td {
  padding: 12px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--vilcar-gray);
}

.vilcar-checkout-summary__totals {
  border-top: 2px solid var(--vilcar-gray);
  padding-top: 15px;
}

.vilcar-checkout-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.vilcar-checkout-summary__row--total {
  padding: 15px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
  border-radius: 8px;
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
}

.vilcar-checkout-summary__row--total span:last-child {
  color: var(--vilcar-red);
  font-size: 24px;
}

/* Métodos de Pago */
.vilcar-checkout-payment {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 20px;
}

.vilcar-checkout-payment__header {
  padding: 15px 20px;
  background: #f8f9fa;
  border-bottom: 2px solid var(--vilcar-gray);
}

.vilcar-checkout-payment__header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--vilcar-black);
}

.vilcar-checkout-payment__header i {
  color: var(--vilcar-red);
  margin-right: 8px;
}

.vilcar-checkout-payment__body {
  padding: 20px;
}

.vilcar-payment-method__radio {
  margin-bottom: 15px;
}

.vilcar-payment-method__radio label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.vilcar-payment-method__radio input {
  display: none;
}

.vilcar-payment-method__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--vilcar-border);
  margin-right: 10px;
  position: relative;
  transition: var(--vilcar-transition-fast);
}

.vilcar-payment-method__radio input:checked + label .vilcar-payment-method__check {
  border-color: var(--vilcar-red);
}

.vilcar-payment-method__radio input:checked + label .vilcar-payment-method__check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vilcar-red);
}

.vilcar-payment-method__info {
  font-size: 13px;
  color: var(--vilcar-gray-dark);
  margin-bottom: 15px;
}

/* Cuentas Bancarias */
.vilcar-bank-account {
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--vilcar-border);
  border-radius: 8px;
  margin-bottom: 10px;
  transition: var(--vilcar-transition-fast);
}

.vilcar-bank-account:hover {
  border-color: var(--vilcar-red);
  background: rgba(220, 53, 69, 0.02);
}

.vilcar-bank-account__logo {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.vilcar-bank-account__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.vilcar-bank-account__info {
  display: flex;
  flex-direction: column;
}

.vilcar-bank-account__info strong {
  font-size: 12px;
  color: var(--vilcar-black);
  margin-bottom: 3px;
}

.vilcar-bank-account__info span {
  font-size: 11px;
  color: var(--vilcar-gray-dark);
}

/* Acciones del Checkout */
.vilcar-checkout-actions {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vilcar-checkout-terms {
  margin-bottom: 20px;
}

.vilcar-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.vilcar-checkbox input {
  display: none;
}

.vilcar-checkbox__mark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--vilcar-border);
  border-radius: 4px;
  margin-right: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--vilcar-transition-fast);
}

.vilcar-checkbox input:checked + .vilcar-checkbox__mark {
  background: var(--vilcar-red);
  border-color: var(--vilcar-red);
}

.vilcar-checkbox input:checked + .vilcar-checkbox__mark::after {
  content: '✓';
  color: white;
  font-size: 12px;
}

.vilcar-checkbox__text {
  font-size: 13px;
  color: var(--vilcar-gray-dark);
  line-height: 1.4;
}

.vilcar-checkbox__text a {
  color: var(--vilcar-red);
  font-weight: 600;
}

.vilcar-checkout-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--vilcar-red) 0%, var(--vilcar-red-dark) 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--vilcar-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.vilcar-checkout-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 53, 69, 0.6);
}

.vilcar-checkout-security {
  text-align: center;
  margin-top: 15px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 13px;
  color: #28a745;
  font-weight: 600;
}

.vilcar-checkout-security i {
  margin-right: 6px;
}

/* Responsive Checkout */
@media (max-width: 991px) {
  .vilcar-checkout-summary {
    position: static;
  }

  .vilcar-progress-step__line {
    width: 50px;
  }
}

@media (max-width: 768px) {
  .vilcar-checkout-header .block-header__title {
    font-size: 28px;
  }

  .vilcar-progress-step__icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .vilcar-progress-step__line {
    width: 30px;
    margin: 0 10px;
  }

  .vilcar-progress-step__label {
    font-size: 11px;
  }

  .vilcar-checkout-card__header {
    padding: 15px;
  }

  .vilcar-checkout-card__body {
    padding: 15px;
  }

  .vilcar-checkout-card__step {
    display: none;
  }
}

/* ==========================================
   13. UTILIDADES
   ========================================== */

.text-vilcar-red {
  color: var(--vilcar-red) !important;
}

.bg-vilcar-red {
  background-color: var(--vilcar-red) !important;
}

.bg-vilcar-black {
  background-color: var(--vilcar-black) !important;
}

.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.5s ease;
}

.hover-zoom:hover img {
  transform: scale(1.1);
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vilcar-red), transparent);
  margin: 60px 0;
}

/* ==========================================
   FIX - RESTAURAR DISEÑO ORIGINAL DE NUEVOS INGRESOS
   Agregar DESPUÉS de todo el CSS en vilcar-custom.css
   ========================================== */
/* Excluir la sección de Nuevos Ingresos de estilos globales */
.block-products-carousel_latest,
.block-products-carousel_latest * {
  /* Reset de transformaciones */
  transform: none !important;
}

/* Restaurar estilos originales del carousel horizontal */
.block-products-carousel_latest {
  background: white;
  padding: 40px 0;
}

/* Header específico para Nuevos Ingresos - SIN modificar */
.block-products-carousel_latest .section-header {
  margin-bottom: 30px;
}

.block-products-carousel_latest .section-header__title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.block-products-carousel_latest .section-header__body {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.block-products-carousel_latest .section-header__spring {
  flex-grow: 1;
}


/* Botones de navegación originales */
.block-products-carousel_latest .arrow__button {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.block-products-carousel_latest .arrow__button:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.block-products-carousel_latest .arrow__button i {
  font-size: 20px;
  color: #333;
}

/* Carousel específico - Layout Horizontal Original */
.block-products-carousel_latest .block-products-carousel__carousel {
  margin: 0;
  padding: 0;
}

.block-products-carousel_latest .owl-carousel {
  margin: 0 !important;
}

/* Columna del carousel horizontal - NO TOCAR */
.block-products-carousel_latest .block-products-carousel__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}

/* Celda del producto horizontal - Mantener diseño original */
.block-products-carousel_latest .block-products-carousel__cell {
  margin-bottom: 15px;
  border: none !important;
}

/* Tarjeta de producto HORIZONTAL - Diseño original */
.block-products-carousel_latest .product-card--layout--horizontal {
  display: flex !important;
  flex-direction: row !important;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: auto !important;
  min-height: 120px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.block-products-carousel_latest .product-card--layout--horizontal:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #dc3545;
  transform: translateX(5px);
}

/* Imagen del producto horizontal - Tamaño fijo original */
.block-products-carousel_latest .product-card--layout--horizontal .product-card__image {
  width: 120px !important;
  min-width: 120px !important;
  height: 120px !important;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.block-products-carousel_latest .product-card--layout--horizontal .product-card__image .image__tag {
  width: 100%;
  height: 100%;
}

/* Info del producto horizontal - Layout compacto */
.block-products-carousel_latest .product-card--layout--horizontal .product-card__info {
  flex-grow: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Nombre del producto - Original */
.block-products-carousel_latest .product-card--layout--horizontal .product-card__name {
  margin: 0 0 8px 0;
}

.block-products-carousel_latest .product-card--layout--horizontal .product-card__name a {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.block-products-carousel_latest .product-card--layout--horizontal .product-card__name a:hover {
  color: #dc3545;
}

/* Badges en horizontal - Posición original */
.block-products-carousel_latest .product-card--layout--horizontal .product-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

/* Footer del producto horizontal */
.block-products-carousel_latest .product-card--layout--horizontal .product-card__footer {
  padding: 0;
  border: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.block-products-carousel_latest .product-card--layout--horizontal .product-card__prices {
  margin: 0;
}

.block-products-carousel_latest .product-card--layout--horizontal .product-card__price {
  font-size: 12px;
  color: #999;
  font-weight: 400;
  margin: 0;
}

/* Owl Carousel Stage - NO TOCAR */
.block-products-carousel_latest .owl-stage-outer {
  overflow: hidden;
}

.block-products-carousel_latest .owl-stage {
  display: flex !important;
}

.block-products-carousel_latest .owl-item {
  float: left;
  min-height: 1px;
}

/* Asegurar que no se apliquen estilos de grid */
.block-products-carousel_latest .product-card {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: auto !important;
}

/* Remover cualquier efecto de elevación excesiva */
.block-products-carousel_latest .product-card:hover {
  transform: translateX(5px) !important;
}

/* Asegurar que el loader no interfiera */
.block-products-carousel_latest .block-products-carousel__carousel-loader {
  display: none;
}

/* Responsive para Nuevos Ingresos */
@media (max-width: 768px) {
  .block-products-carousel_latest .product-card--layout--horizontal .product-card__image {
    width: 100px !important;
    min-width: 100px !important;
    height: 100px !important;
  }

  .block-products-carousel_latest .product-card--layout--horizontal .product-card__info {
    padding: 12px;
  }

  .block-products-carousel_latest .product-card--layout--horizontal .product-card__name a {
    font-size: 13px;
  }
}

/* IMPORTANTE: Excluir completamente de animaciones globales */
.block-products-carousel_latest .animate-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Remover cualquier texto duplicado del título */
.block-products-carousel_latest .text-center {
  display: none !important;
}

/* Mantener solo el header original */
.block-products-carousel_latest .section-header {
  display: block !important;
}

/* ========================================
   PÁGINA DE TÉRMINOS Y CONDICIONES
   ======================================== */

.vilcar-terms-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.vilcar-terms-card .card-body {
  padding: 40px;
}

.vilcar-terms-update {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.vilcar-terms-update i {
  margin-right: 8px;
  color: var(--vilcar-red);
}

.vilcar-terms-section {
  margin-bottom: 35px;
}

.vilcar-terms-section:last-of-type {
  margin-bottom: 0;
}

.vilcar-terms-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--vilcar-black);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vilcar-terms-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--vilcar-red);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.vilcar-terms-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.vilcar-terms-list {
  margin: 0;
  padding-left: 20px;
  color: #555;
}

.vilcar-terms-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.vilcar-terms-list li:last-child {
  margin-bottom: 0;
}

.vilcar-terms-list ul {
  margin-top: 8px;
  padding-left: 20px;
}

.vilcar-terms-list--ordered {
  list-style-type: decimal;
}

.vilcar-terms-contact {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}

.vilcar-terms-contact p {
  margin-bottom: 8px;
  color: #333;
}

.vilcar-terms-contact p:last-child {
  margin-bottom: 0;
}

.vilcar-terms-contact i {
  width: 20px;
  color: var(--vilcar-red);
  margin-right: 10px;
}

.vilcar-terms-acceptance {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 25px;
  border-radius: 10px;
  margin-top: 35px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.vilcar-terms-acceptance i {
  font-size: 28px;
  color: #4caf50;
  flex-shrink: 0;
}

.vilcar-terms-acceptance p {
  margin: 0;
  color: #2e7d32;
  font-weight: 500;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .vilcar-terms-card .card-body {
    padding: 25px;
  }

  .vilcar-terms-title {
    font-size: 16px;
  }

  .vilcar-terms-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .vilcar-terms-acceptance {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ========================================
   PÁGINA DE ÉXITO DEL PEDIDO
   ======================================== */

.vilcar-success-block {
  padding: 40px 0;
}

/* Header de éxito */
.vilcar-success-header {
  text-align: center;
  margin-bottom: 40px;
}

.vilcar-success-icon {
  margin-bottom: 25px;
}

.vilcar-success-icon__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
  animation: vilcar-success-pulse 2s ease-in-out infinite;
}

.vilcar-success-icon__circle i {
  font-size: 48px;
  color: white;
}

@keyframes vilcar-success-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
  }
}

.vilcar-success-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin-bottom: 10px;
}

.vilcar-success-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.vilcar-success-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f0f7ff;
  border-radius: 25px;
  font-size: 14px;
  color: #1976d2;
}

.vilcar-success-email i {
  font-size: 16px;
}

/* Información del pedido */
.vilcar-success-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.vilcar-success-info__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.vilcar-success-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--vilcar-red) 0%, #ff6b6b 100%);
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.vilcar-success-info__content {
  display: flex;
  flex-direction: column;
}

.vilcar-success-info__label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vilcar-success-info__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--vilcar-black);
}

.vilcar-success-info__value--total {
  color: var(--vilcar-red);
}

/* Estado del pedido - Timeline */
.vilcar-success-status {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.vilcar-success-status__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--vilcar-black);
  margin-bottom: 20px;
}

.vilcar-success-status__title i {
  margin-right: 8px;
  color: var(--vilcar-red);
}

.vilcar-success-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.vilcar-success-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: #e0e0e0;
}

.vilcar-success-timeline__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.vilcar-success-timeline__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  font-size: 16px;
  margin-bottom: 10px;
}

.vilcar-success-timeline__item--completed .vilcar-success-timeline__icon {
  background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
  color: white;
}

.vilcar-success-timeline__item--pending .vilcar-success-timeline__icon {
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  color: #bbb;
}

.vilcar-success-timeline__label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.vilcar-success-timeline__item--completed .vilcar-success-timeline__label {
  color: #4caf50;
  font-weight: 600;
}

/* Detalle de productos */
.vilcar-success-products {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.vilcar-success-products__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--vilcar-black);
  margin-bottom: 20px;
}

.vilcar-success-products__title i {
  margin-right: 8px;
  color: var(--vilcar-red);
}

.vilcar-success-table {
  width: 100%;
  border-collapse: collapse;
}

.vilcar-success-table thead th {
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #f0f0f0;
}

.vilcar-success-table tbody tr {
  border-bottom: 1px solid #f5f5f5;
}

.vilcar-success-table tbody td {
  padding: 15px 12px;
  vertical-align: middle;
}

.vilcar-success-table .product-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  background: #f5f5f5;
}

.vilcar-success-table .product-info {
  padding-left: 10px;
}

.vilcar-success-table .product-name {
  font-weight: 600;
  color: var(--vilcar-black);
  font-size: 14px;
  display: block;
}

.vilcar-success-table .product-brand {
  font-size: 12px;
  color: #888;
}

/* Totales */
.vilcar-success-totals {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.vilcar-success-totals__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: #666;
}

.vilcar-success-totals__row--total {
  padding-top: 15px;
  margin-top: 10px;
  border-top: 2px solid #f0f0f0;
  font-size: 18px;
  font-weight: 700;
  color: var(--vilcar-black);
}

.vilcar-success-totals__row--total span:last-child {
  color: var(--vilcar-red);
}

/* Próximos pasos */
.vilcar-success-next {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.vilcar-success-next__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--vilcar-black);
  margin-bottom: 20px;
}

.vilcar-success-next__title i {
  margin-right: 8px;
  color: var(--vilcar-red);
}

.vilcar-success-next__steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vilcar-success-next__step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.vilcar-success-next__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--vilcar-red);
  color: white;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.vilcar-success-next__text {
  display: flex;
  flex-direction: column;
}

.vilcar-success-next__text strong {
  color: var(--vilcar-black);
  font-size: 14px;
  margin-bottom: 3px;
}

.vilcar-success-next__text span {
  color: #666;
  font-size: 13px;
}

/* Botones de acción */
.vilcar-success-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.vilcar-success-actions__btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vilcar-success-actions__btn.btn-primary {
  background: var(--vilcar-red);
  border-color: var(--vilcar-red);
}

.vilcar-success-actions__btn.btn-primary:hover {
  background: #c9302c;
  border-color: #c9302c;
}

/* Contacto */
.vilcar-success-contact {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.vilcar-success-contact p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.vilcar-success-contact p:first-child {
  margin-bottom: 8px;
}

.vilcar-success-contact i {
  margin-right: 5px;
  color: var(--vilcar-red);
}

.vilcar-success-contact strong {
  color: var(--vilcar-black);
}

/* Responsive */
@media (max-width: 768px) {
  .vilcar-success-info {
    grid-template-columns: 1fr;
  }

  .vilcar-success-timeline {
    flex-direction: column;
    gap: 15px;
  }

  .vilcar-success-timeline::before {
    display: none;
  }

  .vilcar-success-timeline__item {
    flex-direction: row;
    text-align: left;
    gap: 15px;
  }

  .vilcar-success-timeline__icon {
    margin-bottom: 0;
  }

  .vilcar-success-actions {
    flex-direction: column;
  }

  .vilcar-success-actions__btn {
    width: 100%;
    justify-content: center;
  }

  .vilcar-success-title {
    font-size: 24px;
  }
}

/* ========================================
   TARJETAS DE PRODUCTOS - BÚSQUEDA
   ======================================== */

.vilcar-product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.vilcar-product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.vilcar-product-card__image {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 100%; /* Aspect ratio 1:1 */
  overflow: hidden;
  background: #f8f9fa;
}

.vilcar-product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vilcar-product-card:hover .vilcar-product-card__image img {
  transform: scale(1.05);
}

.vilcar-product-card__body {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.vilcar-product-card__sku {
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vilcar-product-card__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vilcar-product-card__name a {
  color: var(--vilcar-black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vilcar-product-card__name a:hover {
  color: var(--vilcar-red);
}

.vilcar-product-card__brand {
  font-size: 12px;
  color: #666;
}

.vilcar-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}

.vilcar-product-card__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--vilcar-red);
}

.vilcar-product-card__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: white;
  border: 2px solid #e0e0e0;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vilcar-product-card__cart:hover {
  background: var(--vilcar-red);
  border-color: var(--vilcar-red);
  color: white;
}

.vilcar-product-card__cart i {
  font-size: 16px;
}

/* Responsive para tarjetas de productos */
@media (max-width: 576px) {
  .vilcar-product-card__body {
    padding: 12px;
  }

  .vilcar-product-card__name {
    font-size: 13px;
  }

  .vilcar-product-card__price {
    font-size: 16px;
  }

  .vilcar-product-card__footer {
    padding: 12px;
  }

  .vilcar-product-card__cart {
    width: 36px;
    height: 36px;
  }
}

/* ========================================
   PÁGINA DE DETALLE DE PRODUCTO
   ======================================== */
.vilcar-product-block {
  padding: 30px 0;
}

/* Galería de imágenes */
.vilcar-product-gallery {
  position: sticky;
  top: 20px;
}

.vilcar-product-gallery__main {
  position: relative;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
}

.vilcar-product-gallery__zoom {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.vilcar-product-gallery__zoom:hover {
  background: var(--vilcar-red);
  color: white;
  border-color: var(--vilcar-red);
}

.vilcar-product-gallery__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: var(--vilcar-red);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* Estilos para galería de producto */
.vilcar-product-block .product-gallery {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.vilcar-product-block .product-gallery__featured {
  margin-bottom: 15px;
}

.vilcar-product-block .product-gallery__featured .image__tag {
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* Miniaturas de galería */
.vilcar-product-block .product-gallery__thumbnails {
  padding: 0;
}

.vilcar-product-block .product-gallery__thumbnails-item {
  border: 0.5px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 70px !important;
}

.vilcar-product-block .product-gallery__thumbnails-item:hover,
.vilcar-product-block .product-gallery__thumbnails-item--active {
  border-color: var(--vilcar-red);
}

.vilcar-product-block .product-gallery__thumbnails-item .image__tag {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Información del producto */
.vilcar-product-info {
  padding-left: 20px;
}

.vilcar-product-info__header {
  margin-bottom: 20px;
}

.vilcar-product-info__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.vilcar-product-info__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.vilcar-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vilcar-product-rating__text {
  font-size: 13px;
  color: #666;
}

.vilcar-product-sku {
  font-size: 13px;
  color: #888;
}

/* Precio */
.vilcar-product-price {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #e9ecef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.vilcar-product-price__current {
  font-size: 36px;
  font-weight: 800;
  color: var(--vilcar-red);
  letter-spacing: -0.5px;
}

.vilcar-product-price__whatsapp {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.vilcar-product-price__whatsapp:hover {
  background: #128C7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.vilcar-product-price__whatsapp i {
  font-size: 20px;
}

/* Descripción corta */
.vilcar-product-excerpt {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Características principales */
.vilcar-product-features {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.vilcar-product-features__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--vilcar-black);
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vilcar-product-features__title i {
  color: var(--vilcar-red);
}

.vilcar-product-features__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vilcar-product-features__item {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vilcar-product-features__item:last-child {
  border-bottom: none;
}

.vilcar-product-features__item i {
  color: #888;
  width: 16px;
}

.vilcar-product-features__item strong {
  color: #666;
}

/* Acciones - Cantidad y Botones */
.vilcar-product-actions {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 2px solid #e9ecef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.vilcar-product-actions__row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.vilcar-product-actions__quantity {
  flex-shrink: 0;
}

.vilcar-product-actions__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vilcar-black);
  margin-bottom: 10px;
}

.vilcar-product-actions__label i {
  color: var(--vilcar-red);
  margin-right: 5px;
}

.vilcar-product-actions__input {
  width: 120px;
}

.vilcar-product-actions__input .form-control {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  height: 50px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
}

.vilcar-product-actions__input .form-control:focus {
  border-color: var(--vilcar-red);
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.15);
}

.vilcar-product-actions__addtocart {
  flex: 1;
  padding: 14px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background: var(--vilcar-red);
  border-color: var(--vilcar-red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.vilcar-product-actions__addtocart:hover {
  background: #c9302c;
  border-color: #c9302c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 83, 79, 0.4);
}

.vilcar-product-actions__addtocart i {
  font-size: 18px;
}

/* Detalles adicionales */
.vilcar-product-details {
  margin-bottom: 20px;
}

.vilcar-product-details__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.vilcar-product-details__item:last-child {
  border-bottom: none;
}

.vilcar-product-details__item i {
  color: var(--vilcar-red);
  width: 20px;
}

/* Beneficios */
.vilcar-product-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
}

.vilcar-product-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
}

.vilcar-product-benefits__item i {
  font-size: 20px;
  color: var(--vilcar-red);
  margin-top: 2px;
}

.vilcar-product-benefits__content {
  display: flex;
  flex-direction: column;
}

.vilcar-product-benefits__content strong {
  font-size: 13px;
  color: var(--vilcar-black);
}

.vilcar-product-benefits__content span {
  font-size: 12px;
  color: #666;
}

/* Tabs */
.vilcar-product-tabs {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.vilcar-product-tabs__nav {
  border-bottom: 2px solid #f0f0f0;
  padding: 0;
  margin: 0;
}

.vilcar-product-tabs__nav .nav-item {
  margin: 0;
}

.vilcar-product-tabs__nav .nav-link {
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.vilcar-product-tabs__nav .nav-link:hover {
  color: var(--vilcar-red);
}

.vilcar-product-tabs__nav .nav-link.active {
  color: var(--vilcar-red);
  border-bottom-color: var(--vilcar-red);
  background: transparent;
}

.vilcar-product-tabs__content {
  padding: 30px;
}

/* Especificaciones */
.vilcar-product-specs__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--vilcar-black);
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vilcar-product-specs__title i {
  color: var(--vilcar-red);
}

.vilcar-product-specs__grid {
  margin-bottom: 20px;
}

.vilcar-product-specs__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #f0f0f0;
}

.vilcar-product-specs__row:nth-child(odd) {
  background: #f8f9fa;
}

.vilcar-product-specs__label {
  padding: 12px 15px;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.vilcar-product-specs__label i {
  color: var(--vilcar-red);
  width: 16px;
}

.vilcar-product-specs__value {
  padding: 12px 15px;
  color: #333;
  font-size: 14px;
}

.vilcar-product-specs__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  background: #fff3cd;
  border-radius: 8px;
  font-size: 12px;
  color: #856404;
}

.vilcar-product-specs__disclaimer i {
  margin-top: 2px;
}

.vilcar-product-specs__disclaimer p {
  margin: 0;
}

/* Descripción */
.vilcar-product-description {
  color: #555;
  line-height: 1.8;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .vilcar-product-info {
    padding-left: 0;
    margin-top: 30px;
  }

  .vilcar-product-gallery {
    position: static;
  }
}

@media (max-width: 768px) {
  .vilcar-product-info__title {
    font-size: 22px;
  }

  .vilcar-product-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .vilcar-product-price__current {
    font-size: 26px;
  }

  .vilcar-product-price__whatsapp {
    width: 100%;
    justify-content: center;
  }

  .vilcar-product-actions__row {
    flex-direction: column;
    align-items: stretch;
  }

  .vilcar-product-actions__quantity {
    margin-bottom: 15px;
  }

  .vilcar-product-actions__input {
    width: 100%;
  }

  .vilcar-product-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .vilcar-product-benefits {
    grid-template-columns: 1fr;
  }

  .vilcar-product-specs__row {
    grid-template-columns: 1fr;
  }

  .vilcar-product-specs__label {
    background: #f0f0f0;
  }

  .vilcar-product-actions__buttons {
    flex-direction: column;
  }

  .vilcar-product-tabs__nav .nav-link {
    padding: 12px 15px;
    font-size: 13px;
  }

  .vilcar-product-tabs__content {
    padding: 20px;
  }
}

/* ========================================
   PÁGINAS ABOUT, CONTACT, CLAIM
   ======================================== */

/* Hero Section */
.vilcar-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vilcar-hero--small {
  height: 300px;
}

.vilcar-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.vilcar-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.vilcar-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.vilcar-hero__title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.vilcar-hero__subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin: 0;
}

/* About Section */
.vilcar-about-section {
  padding: 60px 0;
}

.vilcar-about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.vilcar-about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.vilcar-about-content {
  padding-left: 30px;
}

.vilcar-about-label {
  display: inline-block;
  background: var(--vilcar-red);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.vilcar-about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin: 0 0 20px 0;
}

.vilcar-about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Mission Section */
.vilcar-mission-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.vilcar-mission-content {
  padding-right: 30px;
}

.vilcar-mission-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.vilcar-mission-item:last-child {
  margin-bottom: 0;
}

.vilcar-mission-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--vilcar-red);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.vilcar-mission-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin: 0 0 10px 0;
}

.vilcar-mission-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Values Section */
.vilcar-values-section {
  padding: 60px 0;
}

.vilcar-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.vilcar-section-label {
  display: inline-block;
  color: var(--vilcar-red);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.vilcar-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin: 0;
}

.vilcar-value-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vilcar-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vilcar-value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--vilcar-red) 0%, #ff6b6b 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px auto;
}

.vilcar-value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin: 0 0 15px 0;
}

.vilcar-value-text {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Contact Page */
.vilcar-contact-map {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.vilcar-contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.vilcar-contact-block {
  padding: 50px 0;
}

.vilcar-contact-info {
  background: var(--vilcar-red);
  color: white;
  padding: 40px;
  border-radius: 12px;
  height: 100%;
}

.vilcar-contact-info__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.vilcar-contact-info__subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin: 0 0 30px 0;
}

.vilcar-contact-info__items {
  margin-bottom: 30px;
}

.vilcar-contact-info__item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.vilcar-contact-info__item:last-child {
  margin-bottom: 0;
}

.vilcar-contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.vilcar-contact-info__content {
  display: flex;
  flex-direction: column;
}

.vilcar-contact-info__content strong {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.vilcar-contact-info__content span {
  font-size: 13px;
  opacity: 0.9;
}

.vilcar-contact-social {
  display: flex;
  gap: 10px;
}

.vilcar-contact-social__link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s ease;
}

.vilcar-contact-social__link:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.vilcar-contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.vilcar-contact-form__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin: 0 0 10px 0;
}

.vilcar-contact-form__subtitle {
  font-size: 14px;
  color: #666;
  margin: 0 0 30px 0;
}

.vilcar-form-group {
  margin-bottom: 20px;
}

.vilcar-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vilcar-black);
  margin-bottom: 8px;
}

.vilcar-form-label span {
  color: var(--vilcar-red);
}

.vilcar-form-input {
  height: 48px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.vilcar-form-input:focus {
  border-color: var(--vilcar-red);
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1);
}

textarea.vilcar-form-input {
  height: auto;
  resize: vertical;
}

.vilcar-contact-submit {
  width: 100%;
  padding: 14px 30px;
  background: var(--vilcar-red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.vilcar-contact-submit:hover {
  background: #c9302c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(217, 83, 79, 0.3);
}

/* Claim Page */
.vilcar-claim-block {
  padding: 50px 0;
}

.vilcar-claim-intro {
  text-align: center;
  margin-bottom: 40px;
}

.vilcar-claim-intro i {
  font-size: 48px;
  color: var(--vilcar-red);
  margin-bottom: 20px;
}

.vilcar-claim-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--vilcar-black);
  margin: 0 0 10px 0;
}

.vilcar-claim-intro p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.vilcar-claim-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
}

.vilcar-claim-section__header {
  background: var(--vilcar-red);
  color: white;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.vilcar-claim-section__number {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.vilcar-claim-section__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.vilcar-claim-section__body {
  padding: 25px;
}

.vilcar-radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.vilcar-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.vilcar-radio input {
  display: none;
}

.vilcar-radio__mark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s ease;
}

.vilcar-radio input:checked + .vilcar-radio__mark {
  border-color: var(--vilcar-red);
}

.vilcar-radio input:checked + .vilcar-radio__mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--vilcar-red);
  border-radius: 50%;
}

.vilcar-radio__text {
  font-size: 14px;
  color: #333;
}

.vilcar-claim-submit {
  text-align: center;
  margin-top: 20px;
}

.vilcar-claim-button {
  padding: 14px 40px;
  background: var(--vilcar-red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.vilcar-claim-button:hover {
  background: #c9302c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(217, 83, 79, 0.3);
}

/* Responsive para About, Contact, Claim */
@media (max-width: 991px) {
  .vilcar-about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .vilcar-mission-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .vilcar-hero__title {
    font-size: 36px;
  }

  .vilcar-about-title,
  .vilcar-section-title {
    font-size: 28px;
  }

  .vilcar-contact-info {
    padding: 30px;
  }

  .vilcar-contact-form {
    padding: 30px;
  }
}


/* ================================================
   MODERN CATEGORY CARDS - DISEÑO SIMPLE Y LIMPIO
   ================================================ */

.category-card-modern {
  position: relative;
  display: block;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.category-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.category-card-modern__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.category-card-modern:hover .category-card-modern__background {
  transform: scale(1.05);
}

.category-card-modern__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.category-card-modern__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 5;
}

.category-card-modern__title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.category-card-modern__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-card-modern__list li {
  margin-bottom: 6px;
}

.category-card-modern__list li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.category-card-modern__list li a::before {
  content: '• ';
  color: #dc3545;
  font-weight: bold;
  margin-right: 8px;
}

.category-card-modern__list li a:hover {
  color: #dc3545;
}

/* Responsive */
@media (max-width: 991px) {
  .category-card-modern {
    height: 300px;
  }

  .category-card-modern__title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .category-card-modern {
    height: 250px;
  }

  .category-card-modern__content {
    padding: 20px;
  }

  .category-card-modern__title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .category-card-modern__list li a {
    font-size: 13px;
  }
}

/* ================================================
   MODERN NEWS CARDS - DISEÑO LIMPIO Y MODERNO
   ================================================ */

.block-news-modern {
  padding: 60px 0;
  background: #f8f9fa;
}

.news-card-modern {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 30px;
}

.news-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.news-card-modern__image-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e9ecef;
}

.news-card-modern__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card-modern:hover .news-card-modern__image {
  transform: scale(1.1);
}

.news-card-modern__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  background: #dc3545;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.5px;
}

.news-card-modern__badge--offer {
  background: #28a745;
}

.news-card-modern__badge--arrival {
  background: #007bff;
}

.news-card-modern__content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}

.news-card-modern__title {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 56px;
}

.news-card-modern__excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.news-card-modern__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
  margin-top: auto;
}

.news-card-modern__date {
  color: #999;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card-modern__date i {
  font-size: 14px;
}

.news-card-modern__read-more {
  color: #dc3545;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.news-card-modern:hover .news-card-modern__read-more {
  gap: 10px;
}

.news-card-modern__read-more i {
  font-size: 12px;
}

/* Responsive */
@media (max-width: 767px) {
  .news-card-modern__image-container {
    height: 200px;
  }

  .news-card-modern__content {
    padding: 20px;
  }

  .news-card-modern__title {
    font-size: 18px;
    min-height: 50px;
  }

  .news-card-modern__excerpt {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}
