/* Product Card Styles - Matching Reference Design */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2874f0;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 10;
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #f8f8f8;
    overflow: hidden;
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.product-details {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    margin-bottom: 4px;
    line-height: 1.4;
}

.product-weight {
    font-size: 14px;
    color: #878787;
    margin-bottom: 12px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.current-price {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
}

.original-price {
    font-size: 16px;
    color: #878787;
    text-decoration: line-through;
}

.loved-by-section {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.loved-heart {
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.loved-heart.active {
    color: #ff3e6c;
}

.loved-heart.inactive {
    color: #d0d0d0;
}

.loved-text {
    font-size: 13px;
    color: #878787;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-buttons-row {
    display: flex;
    gap: 10px;
}

.btn-add-cart, .btn-buy-now {
    flex: 1;
    background: #ff3e6c;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-bulk-order {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}