.product-card {
    background:#fff;
    border:2px solid #f1f1f1;
    border-radius:16px;
    padding:0px;
    display:flex;
    flex-direction:column;
    font-family:inherit;
    position:relative;
    box-shadow:0 4px 10px -6px rgba(0,0,0,.12);
    transition:box-shadow .3s ease, transform .3s ease;
  }
  
  .product-card:hover {
    transform:translateY(-4px);
    box-shadow:0 10px 28px -10px rgba(0,0,0,.25);
  }
  
  .product-card__media {
    position:relative;
    margin-bottom:10px;
  }
  
  .product-card__img {
    width:100%;
    height:auto;
    border-radius:10px;
    display:block;
    background:#f5f5f5;
    object-fit:cover;
    aspect-ratio: 4 / 3; /* o 1/1 si quieres cuadrado */
  }
  
  .product-card__wishlist {
    position:absolute;
    top:6px;
    right:6px;
    width:30px;
    height:30px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(4px);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    padding:0;
    box-shadow:0 2px 6px rgba(0,0,0,.15);
    transition:background .25s;
  }
  .product-card__wishlist:hover {
    background:#ffe1f5;
  }
  .product-card__wishlist .icon-heart {
    color:#ff1493;
    font-size:16px;
  }
  
  .product-card__body {
    display:flex;
    flex-direction:column;
    gap:6px;
    flex:1;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
  }
  
  .product-card__title {
    font-size:.90rem;
    font-weight:600;
    line-height:1.2;
    margin:0;
    min-height:2.4em; /* 2 líneas */
    text-align:center;
  }
  .product-card__title a {
    text-decoration:none;
    color:#222;
  }
  .product-card__title a:hover { color:#ff1493; }
  
  .product-card__colors {
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:4px;
  }
  .product-card__color {
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--color,#ccc);
    border:1px solid #ddd;
    box-shadow:0 0 0 2px #fff inset;
    cursor:pointer;
    transition:transform .25s, box-shadow .25s;
  }
  .product-card__color:hover {
    transform:scale(1.1);
    box-shadow:0 0 0 2px #ff1493 inset;
  }
  
  .product-card__pricing-line {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
  }
  
  .product-card__price {
    font-size:.85rem;
    text-align:center;
    line-height:1.1;
  }
  
  .product-card__price del {
    display:block;
    color:#777;
    font-size:.75rem;
    margin-bottom:2px;
  }
  
  .product-card__price ins {
    text-decoration:none;
    color:#ff1493;
    font-weight:700;
    font-size:.95rem;
  }
  
  .product-card__discount-badge {
    background:#ff1493;
    color:#fff;
    font-weight:700;
    font-size:.7rem;
    padding:.35rem .55rem;
    border-radius:6px;
    line-height:1;
    display:inline-block;
  }
  
  .product-card__actions {
    margin-top:8px;
  }
  
  .product-card__btn-main {
    display:block;
    width:100%;
    text-align:center;
    background:#ff1493;
    color:#fff;
    font-weight:500;
    font-size:.85rem;
    letter-spacing:.5px;
    padding:.75rem .9rem;
    border-radius:8px;
    text-decoration:none;
    text-transform:uppercase;
    line-height:1;
    transition:background .25s, transform .25s;
  }
  .product-card__btn-main:hover {
    background:#e01181;
    transform:translateY(-2px);
    color: #f5f5f5;
  }
  .product-card__btn-main:active {
    transform:translateY(0);
  }
  
  /* Variaciones contextuales (si las necesitas) */
  .product-card--context-loop { /* estilos específicos para grid */ }
  .product-card--context-slider { /* slider */ }
  
  /* Asegurar que WooCommerce grid no rompa layout */
  ul.products li.product .product-card {
    height:100%;
  }
  



.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #ff1393;
    color: #ffffff;
}


/* Hover y Active sobre los enlaces de página */
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:active {
    background-color: #ff1393;
    color: #ffffff;
}


.woocommerce nav.woocommerce-pagination ul li {
  border-color: #ff1393;
}