/* Base grid styles */
.vinted-products-grid {
    display: grid;
    gap: 20px;
}

.vinted-product-item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vinted-product-item:hover {
    transform: translateY(-5px);
}
/* Heart badge styling */
.vinted-favorite-count {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.heart {
    position: relative;
    width: 40px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heart:before,
.heart:after {
    position: absolute;
    content: "";
    left: 20px;
    top: 0;
    width: 20px;
    height: 28px;
    background: #09B1BA;
    border-radius: 50px 50px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heart:after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.heart-number {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 12px;
    /* Adjust vertical position to center in the heart */
}
.vinted-product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vinted-product-meta {
    margin-bottom: 15px;
}

.vinted-product-price {
    color: #09B1BA;
    font-size: 18px;
    margin-bottom: 5px;
}

.vinted-product-details {
    color: #666;
    font-size: 14px;
}

.vinted-product-button {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    cursor: pointer;
}

/* Responsive grid enhancements */
@media (max-width: 1024px) {
    .vinted-product-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .vinted-product-item {
        margin-bottom: 15px;
    }
    
    .vinted-product-content {
        padding: 12px !important;
    }
    
    .vinted-product-title {
        font-size: 16px;
        margin-bottom: 10px !important;
    }
    
    .vinted-product-button {
        padding: 8px 15px !important;
        font-size: 14px;
    }
}