.product-card img {
    height: 200px;
    object-fit: contain;
    background-color: #ffffff;
}

.product-card {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


.dogshop-banner {
    position: relative;
    width: 100vw;
    background-color: #2b2b2b;

    height: 440px;       /* ⬅ doble de altura */
    padding-top: 70px;   /* navbar fixed */

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Contenedor del SVG */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* SVG ocupa todo el ancho */
.wave svg {
    display: block;
    width: 100%;
    height: 170px; /* profundidad de la onda */
}

/* Color de la onda = color del fondo siguiente */
.wave path {
    fill: #ffffff; /* pon aquí el color del fondo de la sección siguiente */
}

/* Título animado */
.dogshop-title {
    font-size: 72px; /* un poco más grande para equilibrar */
    font-weight: 700;
    letter-spacing: 3px;

    color: transparent;
    -webkit-text-stroke: 2.5px #ffffff;

    animation: fadeDogshop 6s ease-in-out infinite;
}

/* Fade in / out */
@keyframes fadeDogshop {
    0%   { opacity: 0; }
    25%  { opacity: 1; }
    50%  { opacity: 1; }
    100% { opacity: 0; }
}