/* Bordo arancione miniature prodotti */
.product-miniature .product-thumbnail img {
    border: 2px solid #FF8C00;
    border-radius: 4px;
}

/* Doppia onda sinusoidale sovrapposta con colori alternati */
.product-miniature .thumbnail-top {
    position: relative;
}
.product-miniature .thumbnail-top::before,
.product-miniature .thumbnail-top::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 19px;
    z-index: 2;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% 19px;
}
.product-miniature .thumbnail-top::before {
    top: 0;
}
.product-miniature .thumbnail-top::after {
    bottom: 0;
}
/* Dispari */
.js-product:nth-child(odd) .product-miniature .thumbnail-top::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 19' preserveAspectRatio='none'%3E%3Cpath d='M-40,0 H240 V9.5 Q190,19 140,9.5 Q90,0 40,9.5 Q-10,19 -40,9.5 Z' fill='%23FFD700'/%3E%3Cpath d='M0,0 H200 V3.5 Q150,7 100,3.5 Q50,0 0,3.5 Z' fill='%23FF8C00'/%3E%3C/svg%3E");
}
.js-product:nth-child(odd) .product-miniature .thumbnail-top::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 19' preserveAspectRatio='none'%3E%3Cpath d='M-40,19 H240 V9.5 Q190,0 140,9.5 Q90,19 40,9.5 Q-10,0 -40,9.5 Z' fill='%23FF8C00'/%3E%3Cpath d='M0,19 H200 V15.5 Q150,12 100,15.5 Q50,19 0,15.5 Z' fill='%23FFD700'/%3E%3C/svg%3E");
}
/* Pari */
.js-product:nth-child(even) .product-miniature .thumbnail-top::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 19' preserveAspectRatio='none'%3E%3Cpath d='M-40,0 H240 V9.5 Q190,19 140,9.5 Q90,0 40,9.5 Q-10,19 -40,9.5 Z' fill='%23FF8C00'/%3E%3Cpath d='M0,0 H200 V3.5 Q150,7 100,3.5 Q50,0 0,3.5 Z' fill='%23FFD700'/%3E%3C/svg%3E");
}
.js-product:nth-child(even) .product-miniature .thumbnail-top::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 19' preserveAspectRatio='none'%3E%3Cpath d='M-40,19 H240 V9.5 Q190,0 140,9.5 Q90,19 40,9.5 Q-10,0 -40,9.5 Z' fill='%23FFD700'/%3E%3Cpath d='M0,19 H200 V15.5 Q150,12 100,15.5 Q50,19 0,15.5 Z' fill='%23FF8C00'/%3E%3C/svg%3E");
}
