.wd_notice {
    background-color: green;
    color: #FFF;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.frequently-purchased-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.fp-item {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 18px;
    text-align: center;
    background: #fff;
    transition: all 0.25s ease;
}

.fp-item:hover {
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.fp-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.fp-item h4 {
    font-size: 16px;
    margin: 10px 0;
    min-height: 44px;
}

.fp-item .price {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.fp-item .button {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.fp-card-link{
    display:flex;
    text-decoration:none;
    color:inherit;
    height:100%;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.fp-card-link img{
    max-width: 100% !important;
    width: 100px;
}

.fp-card-link:hover{
    text-decoration:none;
    color:inherit;
}