.custom-cake-card {
    padding: 30px;
    border-radius: 16px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: box-shadow .25s ease, transform .2s ease;
}

.custom-cake-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.ccc-title {
    margin: 0 0 10px;
}

.ccc-desc {
    margin: 0 0 22px;
    line-height: 1.6;
}

.ccc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.ccc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    background: #000000;
    color: #ffffff;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: box-shadow .25s ease, transform .2s ease, background .2s ease;
}

.ccc-btn-primary {
    background: #000000;
}

.ccc-btn-secondary {
    background: #4A5E3C;
}

.ccc-btn:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    transform: translateY(-1px);
}

.ccc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ccc-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

.ccc-list-item span:last-child {
    font-weight: 500;
}
