.acb-card {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}

.acb-card:hover {
    transform: translateY(-6px);
}

.acb-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, #5DC90F, #44930b);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
}

.acb-image {
    max-width: 140px;
    margin-bottom: 15px;
}

.acb-product-name {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.acb-stars {
    color: #ff9900;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.acb-description {
    margin-bottom: 18px;
    color: #555;
    line-height: 1.6;
}

.acb-button {
    display: inline-block;
    padding: 12px 22px;
    background: #ff7834;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.acb-button:hover {
    background: #8e360a;
}

/* Mobile Auto Layout */
@media (max-width: 768px) {
    .acb-card {
        padding: 18px;
    }

    .acb-product-name {
        font-size: 18px;
    }

    .acb-image {
        max-width: 100px;
    }
}
