body {
    font-family: 'Poppins', sans-serif;
    background: #f5f6fa;
}

/* HEADER TEXT */
.gradient-text {
    background: linear-gradient(135deg,#8E2A8F,#C77BA8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CARD */
.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

/* Gradient top border */
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg,#8E2A8F,#C77BA8);
}

.product-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/* PRICE */
.price {
    font-weight: 600;
    margin: 10px 0;
}

/* BUTTONS */
.btn-primary-custom {
    background: linear-gradient(135deg,#8E2A8F,#C77BA8);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
}

.btn-outline-custom {
    background: #fff;
    border: 2px solid;
    border-image: linear-gradient(135deg,#8E2A8F,#C77BA8) 1;
    border-radius: 10px;
    padding: 8px 14px;
    color: #161A3A;
}

/* ACTIONS */
.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

/* MOBILE */
@media(max-width:768px){

    .product-img {
        height: 180px;
    }

    .actions {
        flex-direction: column;
        gap: 8px;
    }
}