/* Premium Product Styling */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.premium-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.premium-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.premium-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-card-image:hover img {
    transform: scale(1.05);
}

.premium-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.premium-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.premium-card-desc {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.premium-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-card-price {
    font-weight: 600;
    font-size: 16px;
}

.premium-card-btn {
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.premium-card-btn:hover {
    background: #c0392b;
}
