.wc-dc-suggestions, .wc-dc-suggestions-cart {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wc-dc-suggestions-title-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.wc-dc-suggestions-title, .wc-dc-suggestions-cart h3 {
    font-size: 1.25em;
    font-weight: 700;
    color: #333;
    display: inline-block;
    border-bottom: 2px solid #d9534f;
    padding-bottom: 5px;
    margin: 0;
}

.wc-dc-suggestions-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
    gap: 20px !important;
}

.wc-dc-suggestions-list li {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.wc-dc-suggestions-list li:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: #d9534f;
}

.wc-dc-suggestion-image {
    display: block;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1;
}

.wc-dc-suggestion-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
    display: block !important;
    margin: 0 auto !important;
}

.wc-dc-suggestions-list li:hover .wc-dc-suggestion-image img {
    transform: scale(1.1);
}

.wc-dc-suggestion-title {
    display: block;
    font-size: 0.95em;
    color: #333;
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 600;
    min-height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wc-dc-suggestion-price {
    display: block;
    color: #d9534f;
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 1.1em;
}

.wc-dc-suggestion-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 15px !important;
    background-color: #d9534f !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-size: 0.9em !important;
    font-weight: 600 !important;
    transition: background-color 0.2s;
    width: 100%;
    box-sizing: border-box;
    border: none !important;
    line-height: 1.2 !important;
}

.wc-dc-suggestion-button:hover {
    background-color: #c9302c !important;
    opacity: 0.9;
}

@media (max-width: 600px) {
    .wc-dc-suggestions-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .wc-dc-suggestion-button {
        font-size: 0.8em !important;
        padding: 8px 10px !important;
    }
}
