/*
 * Landing Coleccion Productos PRO
 */

.ommvi-collection-page {
  width: min(100% - 32px, 1360px);
  margin: 0 auto;
  padding: 36px 0 64px;
  background: #f8fafc;
}

.ommvi-collection-hero {
  padding: 0;
  background: transparent;
}

.ommvi-hero-inner {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 18px;
  background-color: #111827;
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
}

.ommvi-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, .78), rgba(15, 23, 42, .28) 58%, rgba(15, 23, 42, .08));
}

.ommvi-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 72px 52px;
  color: #fff;
}

.ommvi-hero-content h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: .98;
}

.ommvi-hero-content p {
  max-width: 540px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.55;
}

.ommvi-hero-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #0875dc;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(8, 117, 220, .28);
  transition: transform .2s ease, background .2s ease;
}

.ommvi-hero-content a:hover {
  background: #005fbe;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.ommvi-collection-products {
  padding: 32px 0 0;
}

.ommvi-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ommvi-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 320px;
  padding: 8px 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 4px rgba(15, 23, 42, .04);
  transition: box-shadow .22s ease, transform .22s ease;
}

.ommvi-product-card:hover {
  box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
  transform: translateY(-2px);
}

.ommvi-product-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: #0f172a;
  text-decoration: none;
}

.ommvi-product-link:hover {
  color: #0f172a;
  text-decoration: none;
}

.ommvi-product-image {
  position: relative;
  width: 100%;
  min-height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ommvi-product-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 175px;
  object-fit: contain;
}

.ommvi-sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f2384a;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(242, 56, 74, .25);
}

.ommvi-product-title {
  min-height: 3.6em;
  margin: 10px 0 12px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.ommvi-product-price {
  margin-bottom: 16px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.ommvi-product-price del {
  color: #94a3b8;
  font-weight: 700;
}

.ommvi-product-price ins {
  text-decoration: none;
}

.ommvi-product-cta {
  margin-top: auto;
}

.ommvi-product-cta .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: #0875dc;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.ommvi-product-cta .button:hover {
  background: #005fbe;
  color: #fff;
  text-decoration: none;
}

.ommvi-empty-products {
  grid-column: 1 / -1;
  margin: 0;
  padding: 36px;
  border-radius: 12px;
  background: #fff;
  color: #475569;
  text-align: center;
}

.ommvi-collection-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 34px;
}

.ommvi-collection-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #0875dc;
  border-radius: 0;
  background: #fff;
  color: #0875dc;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
}

.ommvi-collection-pagination .page-numbers:hover,
.ommvi-collection-pagination .page-numbers.current {
  border-color: #0875dc;
  background: #0875dc;
  color: #fff;
  text-decoration: none;
}

.ommvi-collection-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: #0f172a;
}

@media (min-width: 768px) {
  .ommvi-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 22px;
  }

  .ommvi-product-card {
    min-height: 400px;
    padding: 12px 16px 20px;
  }

  .ommvi-product-image,
  .ommvi-product-image img {
    height: 230px;
  }

  .ommvi-product-title {
    font-size: 17px;
  }

  .ommvi-product-price {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .ommvi-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ommvi-collection-page {
    width: min(100% - 24px, 1360px);
    padding-top: 24px;
  }

  .ommvi-hero-inner {
    min-height: 280px;
    border-radius: 14px;
  }

  .ommvi-hero-content {
    padding: 48px 24px;
