/* Custom styles for product cards on home page */
.product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.product-card__meta .category {
    background-color: #f8f9fa;
    color: #495057;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.product-card__meta .downloads {
    color: #28a745;
    font-weight: 500;
}

.product-card__meta .downloads i {
    margin-right: 4px;
}

.product-card__title {
    margin-bottom: 10px;
}

.product-card__title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.product-card__title a:hover {
    color: #66cf0f;
}

.product-card__description {
    color: #a8a8a8;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.product-card__discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.product-card__discount-badge .badge {
    font-size: 10px;
    padding: 4px 8px;
}

.product-card__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card__thumb img {
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__thumb img {
    transform: scale(1.05);
}

.original-price {
    font-size: 12px;
}

.rating .stars i {
    color: #ffc107;
    margin-right: 2px;
}

.rating .rating-text {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}

/* Bootstrap tab customization */
.custom--nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    color: #666;
    font-weight: 500;
    padding: 10px 20px;
    margin-right: 10px;
}

.custom--nav-tabs .nav-link.active {
    border-bottom-color: #66cf0f;
    color: #66cf0f;
    background: none;
}

.custom--nav-tabs .nav-link:hover {
    color: #66cf0f;
    border-bottom-color: #66cf0f;
}
